Open In App

C | Input and Output | Question 12

Like Article
Like
Save
Share
Report

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


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads