Skip to content
Related Articles
Open in App
Not now

Related Articles

C | Input and Output | Question 12

Improve Article
Save Article
  • Difficulty Level : Easy
  • Last Updated : 28 Jun, 2021
Improve Article
Save Article

Output of following program?




#include<stdio.h>
int main()
{
    printf("%d", printf("%d", 1234));
    return 0;
}


(A) 12344
(B) 12341
(C) 11234
(D) 41234


Answer: (A)

Explanation: printf() returns the number of characters successfully printed on the screen.

Quiz of this Question

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!