fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. enum month {JAN,FEB,MAR,APR,MAY,JUN,JUL,AUG,SEP,OCT,NOV,DEC};
  5. enum month i;
  6. for(i=JAN;i<=DEC;i++)
  7. printf("\n%d",i);
  8. return 0;
  9. }
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
0
1
2
3
4
5
6
7
8
9
10
11