C | Input and Output | Question 3
#include <stdio.h> int main() { printf ( " \"GEEKS %% FOR %% GEEKS\"" ); getchar (); return 0; } |
(A) “GEEKS % FOR % GEEKS”
(B) GEEKS % FOR % GEEKS
(C) \”GEEKS %% FOR %% GEEKS\”
(D) GEEKS %% FOR %% GEEKS
Answer: (A)
Explanation: Backslash (\\\\) works as escape character for double quote (“). For explanation of %%, see https://www.geeksforgeeks.org/how-to-print-using-printf/
Quiz of this Question
Please Login to comment...