The following code gives me the output as ‘d’:
void main()
{
short int a=5;
printf("%d"+1,a);
getch();
}
How does printf() actually work?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
printfdoes not “see” the format specifier because you are passing a pointer to"%d"plus one. This is equivalent to passing"d"by itself:will print
dand ignorea. This is not specific toprintf, pointer arithmetic works like that with allcharpointers, including pointers obtained from string literals (i.e. double-quoted sequences of characters).