fork(66) download
  1. #include <stdio.h>
  2. #include <math.h>
  3. #include <stdlib.h>
  4.  
  5. int main(){
  6.  
  7. double p;
  8. double a = 16;
  9. double b = 54;
  10. p = (pow(a,b));
  11.  
  12. printf("%.10e\n", p);
  13. return 0;
  14. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
1.0531229167e+65