Solved

Which of the Following for Loops Is Illegal

Question 72

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:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions