C Programming Code Examples C > Miscellaneous Code Examples C Program to Demonstrate Nested Printf Statements C Program to Demonstrate Nested Printf Statements "c.happycodings.com - abcdefghijklmnopqrstuvwxyz" will be first Printed while executing inner printf Total Length of the "c.happycodings.com - abcdefghijklmnopqrstuvwxyz" is 44 So printf will return total length of string It returns 44 to outer printf This outer printf will print 44 #include<stdio.h> #include<conio.h> void main() { clrscr(); printf("%d", printf("c.happycodings.com - abcdefghijklmnopqrstuvwxyz")); getch(); }