out.c 397 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # 1 "4.3.example.c"
  2. # 1 "<built-in>"
  3. # 1 "<command-line>"
  4. # 31 "<command-line>"
  5. # 1 "/usr/include/stdc-predef.h" 1 3 4
  6. # 17 "/usr/include/stdc-predef.h" 3 4
  7. # 32 "<command-line>" 2
  8. # 1 "4.3.example.c"
  9. int main()
  10. {
  11. int yo=1;
  12. switch (yo) {
  13. case NUMBER:
  14. printf ("yes");
  15. break;
  16. default:
  17. printf ("no");
  18. break;
  19. }
  20. return 0;
  21. }