Please explain the following piece of code..
printf("%c\n",0+'0'); --> returns 0
printf("%c\n",1+'0'); --> returns 1
printf("%c\n",0+'1'); --> returns 1
printf("%c\n",1+'1'); --> returns 2
Thanx.
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.
Look at the ASCII table. ‘0’ has code 48. So ‘0’ + 1 yields 49, which is ‘1’. So every character is in fact an integer. You add another integer to it and then, because you specify “%c” in printf, you force it to consider it a character. He goes check his ASCII table and, after some deliberation he decides to print the output to the screen.