Multiple choice What does the following C statement print? print(“%d”, ++5); 5 6 7 An error message Reveal answer Fill a bubble to check yourself D Correct answer Explanation The increment operator (++) requires an lvalue (a variable) to increment. Using it on a constant (5) is a syntax error.