fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4.  
  5. typedef enum V2XTCFlag
  6. {
  7. TC1 = 0,
  8. TC2,
  9. TC3,
  10. TC4,
  11. TC5,
  12. TC6
  13. } eV2XTCFlag;
  14.  
  15. int main()
  16. {
  17. int m, n;
  18.  
  19. eV2XTCFlag RV;
  20. RV = TC4;
  21. n=3;
  22. if ((RV == TC1) || (RV == TC2) || (RV == TC3))
  23. {
  24. printf("True \n");
  25. }
  26. else
  27. {
  28. printf("False \n");
  29. }
  30. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
False