Open In App

C | Input and Output | Question 12

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

Article Tags :