Why the below program gives the output :A.
what is use of \n after the format specifier %d?
I have tried it on Linux, Windows and ideone.
#include <stdio.h>
int main(void)
{
char p[]="%d\n";
p[1]='c';
printf(p,65);
return 0;
}
|
|
First, your program modifies the format string: it becomes "%c\n". Then it prints 65, which is re-interpreted as an ASCII code, which is an upper-case This is identical to
or even
because |
|||
|
|
|
ASCII character encoding. A is 65. http://www.asciitable.com/ You are changing the output format specifier from %d - integer to %c - character |
|||
|
|
|
Let's follow the flow of execution and the state of the variables. Initially, you are setting the string p = "%d\n". The '%d' tells printf to print an integer in the place of '%d' and it would be passed after the string argument to printf. You then are setting p[1] = 'c'. Which changes p to "%c\n", because arrays are indexed starting at 0 so you change the second character when you reference the 1 position. They you call printf with p and 65, which makes the call look like this: 'printf("%c\n", 65)'. The %c tells the printf function to replace the %c with a character passed as the second argument. In C, characters are represented as integers in the ASCII table (can be found here: http://www.asciitable.com/). It just so happens that 65 is the code for 'A', so an 'A' followed by a newline is printed. I hope this is helpful! |
|||
|
|
|
With the format string You'll find more about ASCII on the wikipedia page, including a table of character values. |
|||
|
|