fork download
  1. /* package whatever; // don't place package name! */
  2. #iclude<stdio.h>
  3. int main()
  4. {
  5. int i;
  6. i=10>5&&!(10<9)||3>4;
  7. printf("%d",i);
  8. return 0;
  9. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:2:2: error: invalid preprocessing directive #iclude
 #iclude<stdio.h>
  ^~~~~~
prog.c: In function ‘main’:
prog.c:6:17: warning: suggest parentheses around ‘&&’ within ‘||’ [-Wparentheses]
  i=10>5&&!(10<9)||3>4;
                 ^~
prog.c:7:2: warning: implicit declaration of function ‘printf’ [-Wimplicit-function-declaration]
  printf("%d",i);
  ^~~~~~
prog.c:7:2: warning: incompatible implicit declaration of built-in function ‘printf’
prog.c:7:2: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
stdout
Standard output is empty