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