4.3.example.c 165 B

123456789101112131415
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int yo=1;
  5. switch (yo) {
  6. case NUMBER:
  7. printf ("yes");
  8. break;
  9. default:
  10. printf ("no");
  11. break;
  12. }
  13. return 0;
  14. }