0
What is the output of this code?
What is the output of this code? int main() { int n; for(n= 5; n > 0; n--) { cout<<n; if(n == 3) break; } return 0; }
5 Answers
+ 1
what's count statement
+ 1
I think it means "cout"
+ 1
thanks
0
543
0
543
What is the output of this code? int main() { int n; for(n= 5; n > 0; n--) { cout<<n; if(n == 3) break; } return 0; }