1.

What will be the output of the program ?

#include<stdio.h> int main()
{ char *str; str = "%d n"; str++; str++; printf(str-2, 300); return 0;
}

A. No output
B. 30
C. 3
D. 300
Answer» E.


Discussion

No Comment Found