fork download
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. int main(void) {
  5. printf("%lf\n", pow(1.0, 2.0));
  6. printf("%f\n", pow(1.0, 2.0));
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 4200KB
stdin
Standard input is empty
stdout
1.000000
1.000000