0
Why the loop starts from 14 in my compiler? But when I run it in SoloLearn compiler , it starts from 0. Thank you.
Int x; for(x=0; x<40; x++) { cout << 0 + x << endl; }
1 Réponse
0
maybe your compiler is faulty
it should start from 0
Int x; for(x=0; x<40; x++) { cout << 0 + x << endl; }