Q. Which of the following is not a valid C++ loop?
β
Correct Answer: (C)
repeat
Explanation: The 'repeat' loop does not exist in C++. C++ supports 'for', 'while', and 'do-while' loops.