fork(2) download
  1. #include<iostream>
  2. #include<cmath>
  3. int main()
  4. {
  5. long double ldbl = pow(7, 23);
  6. double dbl = pow(7, 23);
  7. std::cout << ldbl << ", " << dbl << std::endl;
  8. }
  9.  
  10.  
Success #stdin #stdout 0s 2724KB
stdin
Standard input is empty
stdout
2.73687e+19, 2.73687e+19