Multiple Choice
Which of the following for loops is illegal?
A) for (int i = 0; ; ) { }
B) for (int i = 0) { }
C) for (int i = 0, k = 1; ; i++) { }
D) for ( ; ; )
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q67: What is the output of the following
Q68: How many times does the following loop
Q69: What is the first and last value
Q70: What is the output of the code
Q71: Is the code snippet written below legal?
Q73: What is the output of this loop?
Q74: What is the output of this code
Q75: What values does counter variable i take
Q76: What is the output of the code
Q77: What is the output of the following