C++ LOOPS | C++ FOUNDATION Question 10

Last Updated :
Discuss
Comments

Which of the following for loop will not work?


 

 for (int i=0; i<5; i++)

for (int i=5; i<=10; i++)
 

for (int i=5; i=10; i++)
 

all of the above

Share your thoughts in the comments