fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. const int a=5;
  5. switch(a)
  6. {
  7. case 1: ;
  8. case 2:;
  9. case 3+5:;
  10. case a:;
  11.  
  12. }
  13. return 0;
  14. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty