fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char a = 1;
  5. switch(a) {
  6. case 1:
  7. printf("true\n");
  8. break;
  9.  
  10. }
  11. printf("true2\n");
  12. // your code goes here
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 4512KB
stdin
Standard input is empty
stdout
true
true2