Ask your own question, for FREE!
Computer Science 12 Online
OpenStudy (tiffany_rhodes):

(Learning C++): for (int i=0; i>1; i--) cout << i << endl; I said this loop doesn't have an output but if it doesn't have an output, how can I tell whether the loop is finite or infinite?

OpenStudy (rsmith6559):

There won't be any output. i's starting value fails the condition immediately, so the code block is never executed.

OpenStudy (anonymous):

try using this code char I[316]; cin.getline(I,316); for(;;) { cout<<I<<endl; } it will be fantastic

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!