fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. switch(3)
  5. {
  6. case 2: printf("OLA\n");
  7. case 3: printf("JOLA\n");
  8. case 4: printf("JAGA\n");
  9. break;
  10. default: printf("OK\n");
  11. }
  12. }
Runtime error #stdin #stdout 0s 2008KB
stdin
Standard input is empty
stdout
JOLA
JAGA