Report Bug
Qus : in C language How will you print '\n' on the screen?
Qusआप स्क्रीन पर '\ n' कैसे प्रिंट करेंगे?

A. printf("\n");
B. echo '\n';
C. printf('\n');
D. printf('\\n')


Solution
D. printf('\\n')



Explanation
The statement printf("\\n"); prints '\n' on the screen.



Report Bug