fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. // your code goes here
  5. int i=1;
  6. i<<1%2;
  7. }
  8.  
  9. return 0;
  10. }
  11.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:6:3: warning: statement with no effect [-Wunused-value]
  i<<1%2;
  ~^~~~~
prog.c: At top level:
prog.c:9:2: error: expected identifier or ‘(’ before ‘return’
  return 0;
  ^~~~~~
prog.c:10:1: error: expected identifier or ‘(’ before ‘}’ token
 }
 ^
stdout
Standard output is empty