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