fork download
  1. #include <stdio.h>
  2. int main(void) {
  3. int x = 5;
  4. if(x < 10)
  5. {
  6. if (x < 3)
  7. printf("less than 3");
  8. }
  9. else
  10. printf("less than 10 and greater than 3");
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5324KB
stdin
Standard input is empty
stdout
Standard output is empty