🎴 Flashcard Mode

web technology Online Quiz - 171

Card1 / 20
Mastered0
Review0
QuestionClick to flip

printf("%d",printf("What this will print"));

AnswerClick to flip back
A
20
💡 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.

Change Mode