fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. double x;
  6. x=-0.000000;
  7. if(x<0)
  8. {
  9. printf("x is less");
  10. }
  11. else
  12. {
  13. printf("x is grater");
  14. }
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
x is grater