C | Input and Output | Question 12 Read Discuss Courses Practice Improve Article Improve Save Article Save Like Article Like 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 Please Login to comment...