fork download
  1. #include <stdio.h>
  2.  
  3.  
  4. enum suit{
  5. club=0;
  6. diamond=10;
  7. heart=20;
  8. spades=3;
  9.  
  10. }
  11.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:5:9: error: expected ',' or '}' before ';' token
   club=0;
         ^
prog.c:10:1: error: expected identifier or '(' at end of input
 }
 ^
stdout
Standard output is empty