#include<stdio.h>
int main()
{
char a='x';
printf("%c %d",a);
return 0;
}
Output:
x 134513696
What is 134513696?
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.
Garbage. This is due to a programming error:
You put only one parameter on the stack (a), but printf takes 2 values from the stack, because of the two percent signs.
If you intended to have both outputs, the character and its ordinal value, you should have written
printf("%c %d", a, a);