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