fork download
  1. include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int i, j;
  6. j = 10;
  7. i = (j++, j + 100, 999 + j);
  8. cout << i;
  9. return 0;
  10. }
Compilation error #stdin compilation error #stdout 0s 3096KB
stdin
Standard input is empty
compilation info
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;
      ^
stdout
Standard output is empty