fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. enum color{red,green=2,blue};
  6. typedef enum color mycolor;
  7. mycolor m=red;
  8. printf ("%d",m);
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5432KB
stdin
Standard input is empty
stdout
Standard output is empty