1 2 3 4 5 6 7 8
int main(){ int i = 0; for(; i< 10; i++){ cout<< i << endl; } cout<< i<<endl; return 0 }
1 2 3
In function 'int main()': Line 8: error: expected ';' before '}' token compilation terminated due to -Wfatal-errors.