fork download
  1. #include <stdio.h>
  2.  
  3.  
  4.  
  5. int main()
  6.  
  7. {
  8.  
  9. int i = 1, 2, 3;
  10.  
  11.  
  12.  
  13. printf("%d", i);
  14.  
  15.  
  16.  
  17. return 0;
  18.  
  19. }
  20.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:9:16: error: expected identifier or ‘(’ before numeric constant
     int i = 1, 2, 3;
                ^
stdout
Standard output is empty