fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. ind c ,d;
  5. c=3,4;
  6. d=5,6;
  7. print("%d",c+d);
  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:4:2: error: unknown type name ‘ind’
  ind c ,d;
  ^~~
prog.c:5:5: warning: right-hand operand of comma expression has no effect [-Wunused-value]
  c=3,4;
     ^
prog.c:6:5: warning: right-hand operand of comma expression has no effect [-Wunused-value]
  d=5,6;
     ^
prog.c:7:2: warning: implicit declaration of function ‘print’ [-Wimplicit-function-declaration]
  print("%d",c+d);
  ^~~~~
stdout
Standard output is empty