#include<stdio.h>
int main()
{
char a='x';
printf("%c %d",a);
return 0;
}
Output:
x 134513696
What is 134513696?
Output:
What is 134513696? |
|||||||||
|
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
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 |
|||||||||||||
|
|
Check this link http://techpreparation.com/c-interview/output-of-printf.htm |
|||
|
|
|
Suppose you enter into a contract with a mafia boss to buy a shipment of goods for $1000. Then instead you only hand over $500, and that night you go home to find a dead kitten in your bed. What did you expect?! C is the mafia boss and you you broke your contract with him. Be glad it was just a useless number on your terminal and not your computer blowing up. |
|||
|
|
|
If the number of format specifiers in For example :
However if the arguments are greater in number(than the format specifiers) the extra ones are just evaluated and ignored. For example :
|
|||||||
|
|
|
|||
|
|