🎴 Flashcard Mode

C Programming - 1

Card1 / 23
Mastered0
Review0
QuestionClick to flip

Which of the following is not a control statement?

AnswerClick to flip back
A
END
💡 Explanation:

SELECT CASE and both single-alternative and double-alternative block IF statements are all control structures that direct program flow. END is a termination keyword used to close blocks, but it doesn't control program flow itself. END simply marks the conclusion of a block structure like IF or SELECT CASE.

Change Mode