Discussion :: Input / Output
-
What will be the output of the program ?
#include
A.
char *str = "char *str = %c%s%c; main(){ printf(str, 34, str, 34);}"; main(){ printf(str, 34, str, 34);} |
B.
char *str = %c%s%c; main(){ printf(str, 34, str, 34);} |
C.
No output |
D.
Error in program |
Answer : Option A
Explanation :
No answer description available for this question.
Be The First To Comment