main() { int c,i=5; if(i<10) { i++; c=i; cout<<c; } }
main() { int c,i=5; if(i<10) { ++i; c=i; cout<<c; } }
Leave a comment: