Report Bug
Qus : Which statement can cause an infinite loop in C++?
QusWhich statement can cause an infinite loop in C++?

A. while(1)
B. for(;;)
C. do{ } while(1);
D. All of the above


Solution
D. All of the above






Report Bug