fork download
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5. int a=5
  6. a*=2+3
  7.  
  8. return 0;
  9. }
  10.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:6: error: expected ‘,’ or ‘;’ before ‘a’
prog.c:5: warning: unused variable ‘a’
stdout
Standard output is empty