In the C language, The answer of
char c='61';
printf ("%d", c);
is 49. The answer of
char c='61';
printf ("%c", c);
is 1. The answer of
char c=61;
printf ("%d", c);
is 61. The answer of
char c=61;
printf ("%c", c);
is =. How is this happening exactly?
c=061;andc=0x61;to complete the set.