Multiple choice technology web technology printf("%d",printf("What this will print")); Compile error printf("What this will print") What this will print 20 Reveal answer Fill a bubble to check yourself D Correct answer Explanation The inner printf prints the string and returns the number of characters printed (20). The outer printf then prints this return value as an integer. So the full output is 'What this will print20' on the same line, and the outer printf displays 20.