fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4.  
  5. printf ("...123\n");
  6.  
  7. // your code goes here
  8. return 0;
  9. }
Compilation error #stdin compilation error #stdout 0s 15240KB
stdin
Standard input is empty
compilation info
prog.cpp:5:9: error: expected constructor, destructor, or type conversion before ‘(’ token
  printf ("...123\n");
         ^
prog.cpp:8:2: error: expected unqualified-id before ‘return’
  return 0;
  ^~~~~~
prog.cpp:9:1: error: expected declaration before ‘}’ token
 }
 ^
stdout
Standard output is empty