#inlude<iostream> using namespace std int main() { int x = 3.3%1; printf("%d",x); return 0; }
Standard input is empty
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.
Standard output is empty