Predict the output of the following C program with a printf inside printf.
#include<stdio.h>
int main()
{
int x = 1987;
printf ( "%d" , printf ( "%d" , printf ( "%d" , x)));
return (0);
}
|
Output :
198741
Explanation :
1. Firstly, the innermost printf is executed which results in printing 1987
2. This printf returns total number of digits in 1987 i.e 4. printf() returns number of characters successfully printed on screen. The whole statement reduces to :
printf ( "%d" , printf ( "%d" , 4));
|
3. The second printf then prints 4 and returns the total number of digits in 4 i.e 1 (4 is single digit number ).
4. Finally, the whole statement simply reduces to :
5. It simply prints 1 and output will be :
Output:
198741
So, when multiple printf’s appear inside another printf, the inner printf prints its output and returns length of the string printed on the screen to the outer printf.
If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
13 Dec, 2018
Like Article
Save Article