What will be the output of the program ?
#include int main() { char *str; str = "%d\n"; str++; str++; printf(str-2, 300); return 0; }
No output
30
3
300
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option D
Explanation :
No answer description available for this question.
Be The First To Comment