fork(2) download
  1. #include <cfloat>
  2. #include <cmath>
  3. #include <iostream>
  4. using namespace std;
  5.  
  6. int main() {
  7. double x = DBL_MIN;
  8. cout << (x > 0) << endl;
  9. cout << (x * x > 0) << endl;
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
1
0