#include<stdio.h>
int main(void)
{
int a=5;
printf("%d"+1,a);
}
Output: d. I didn't get how the output is coming: d ?
Output: d. I didn't get how the output is coming: d ? |
|||
|
|
|
You passed as first argument of
You can see it easier this way:
Thus, (
Edit: * ok, it's not UB, at least for the C99 standard (§7.19.6.1.2) it's ok to have unused parameters in fprintf:
If the format is exhausted while arguments remain, the excess arguments are evaluated (as always) but are otherwise ignored. and The printf function is equivalent to fprintf with the argument stdout interposed before the arguments to printf. |
|||||||||
|
|
String literals are pointers. Advancing the pointer to |
|||
|
|
|
You should do |
|||
|
|
|
Suppose you had:
What do you expect
to print? Hint: t.c:5: warning: too many arguments for format |
|||
|
|
|
"%d" is String constant, it will be stored in the char[] in the memory. During runtime, "%d" returns the starting location of the char[]. Increasing character array pointer by one, will point to the next character. Hence "d" alone is passed to the printf function. so the output is "d" |
|||
|
|