Report Bug
Qus : printf (%d, printf (infomax));
Qusprintf (%d, printf (infomax));

A. results in a syntax error
B. output Infomax7
C. outputs garbage
D. outputs infomax and terminates abruptly


Solution
B. output Infomax7



Explanation
printf statement will print infomax7, "infomax" due to inner printf statement and 7 as length due to outer printf statement.



Report Bug