fork(4) download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. double d = -0.0;
  6. if (d >= 0) {
  7. std::cout << "Pass!" << std::endl;
  8. }
  9. }
Success #stdin #stdout 0s 2928KB
stdin
Standard input is empty
stdout
Pass!