fork download
  1. #include<cstdio>
  2. #include<iostream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7. int I =10, j=2;
  8. int *ip = &I ,*jp =&j;
  9. int k = *ip/ *jp;
  10. printf(ā€œ%uā€,k);
  11. return 0;
  12. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:10: error: stray ‘\342’ in program
prog.cpp:10: error: stray ‘\200’ in program
prog.cpp:10: error: stray ‘\234’ in program
prog.cpp:10: error: stray ‘\342’ in program
prog.cpp:10: error: stray ‘\200’ in program
prog.cpp:10: error: stray ‘\235’ in program
prog.cpp: In function ‘int main()’:
prog.cpp:10: error: expected primary-expression before ‘%’ token
prog.cpp:10: error: ‘u’ was not declared in this scope
stdout
Standard output is empty