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