fork(6) download
  1. #include <iostream>
  2. #include <math.h>
  3.  
  4. int main ()
  5. {
  6. printf ("5 ^ 3 = %f\n", pow(5.0, 3.0));
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 4432KB
stdin
Standard input is empty
stdout
5 ^ 3 = 125.000000