fork download
  1. int main() {
  2. return func();
  3. }
  4.  
  5. int func() {
  6. return 1;
  7. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp: In function 'int main()':
prog.cpp:2:17: error: 'func' was not declared in this scope
     return func();
                 ^
stdout
Standard output is empty