fork download
  1. #include <stdio.h>
  2.  
  3. #include <stdio.h>
  4.  
  5. int main (void) {
  6. int a = 5;
  7. if(a==3) printf("3");
  8. else if(a==4) {
  9. printf("4");
  10. printf("command two");
  11. }
  12. else if(a==5) printf("5");
  13. else printf("else");
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5532KB
stdin
Standard input is empty
stdout
5