fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. unsigned int a,b;
  7. a=217;
  8. b=a>>4;
  9. printf(ā€œ%d\nā€,b);
  10. return 0;
  11. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:9:8: error: stray ‘\342’ in program
 printf(“%d\n”,b);
        ^
prog.cpp:9:9: error: stray ‘\200’ in program
 printf(“%d\n”,b);
         ^
prog.cpp:9:10: error: stray ‘\234’ in program
 printf(“%d\n”,b);
          ^
prog.cpp:9:13: error: stray ‘\’ in program
 printf(“%d\n”,b);
             ^
prog.cpp:9:15: error: stray ‘\342’ in program
 printf(“%d\n”,b);
               ^
prog.cpp:9:16: error: stray ‘\200’ in program
 printf(“%d\n”,b);
                ^
prog.cpp:9:17: error: stray ‘\235’ in program
 printf(“%d\n”,b);
                 ^
prog.cpp: In function ‘int main()’:
prog.cpp:9:11: error: expected primary-expression before ‘%’ token
 printf(“%d\n”,b);
           ^
prog.cpp:9:12: error: ‘d’ was not declared in this scope
 printf(“%d\n”,b);
            ^
stdout
Standard output is empty