fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. enum Nptel {July = 0,Aug,Dec};
  5. enum Nptel course = Dec;
  6. if(course==0)
  7. {
  8. printf("course is in july");
  9. } else if(course==1){
  10. printf("aug");
  11. } if(course==2){
  12. printf("dec");
  13. }
  14. return 0;
  15. }
Success #stdin #stdout 0s 4344KB
stdin
Standard input is empty
stdout
dec