Looping | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Looping

BUG BUSTERS: What is wrong with this code? int counter = 0; while (counter < 10) { cout << “counter: “ << counter; }

10th Nov 2016, 3:07 PM
Rabbi Sarpong
1 Answer
+ 2
0 You don`t have "counter" to increment and then your code will be infinite loop. Correct Answer : int counter = 0; while (counter < 10) { cout << “counter: “ << counter; counter++; } Hope to help you!
10th Nov 2016, 3:48 PM
XiA
XiA - avatar