fork(7) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a = 12, b = 10, c = 10;
  5. if (a > b)
  6. if (b > c)
  7. printf("s1");
  8. else printf("s2");
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
s2