include <iostream> using namespace std; int main() { int i, j; j = 10; i = (j++, j + 100, 999 + j); cout << i; return 0; }
Standard input is empty
prog.cpp:1:1: error: 'include' does not name a type
include <iostream>
^
prog.cpp: In function 'int main()':
prog.cpp:8:6: error: 'cout' was not declared in this scope
cout << i;
^
Standard output is empty