fork download
  1. #inlude<iostream>
  2. using namespace std
  3. int main()
  4. {
  5. int x = 3.3%1;
  6. printf("%d",x);
  7. return 0;
  8. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:1:2: error: invalid preprocessing directive
#inlude<iostream>
 ^
prog.cpp:2:20: error: expected ';' after namespace name
using namespace std
                   ^
                   ;
prog.cpp:2:17: warning: using directive refers to implicitly-defined namespace 'std'
using namespace std
                ^
1 warning and 2 errors generated.
stdout
Standard output is empty