fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int MARCIA = 13;
  5. switch (MARCIA){
  6. case 1 :
  7. printf("SI PARTE");
  8. break;
  9.  
  10. case 2 :
  11. printf ("Hai messo la seconda");
  12. break;
  13.  
  14. default :
  15. printf ("FOLLE");
  16. }
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0s 5276KB
stdin
Standard input is empty
stdout
FOLLE