fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int i=5,j=i-4*i;
  5. switch(j){
  6. default :j=2;
  7. case 1:j--;break;
  8. case 2:j++;
  9. case 0:j++;break;
  10. }
  11. printf("%d",j++);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 4340KB
stdin
Standard input is empty
stdout
1