fork 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("%.3e\n", p);
  13. return 0;
  14. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
1.053e+65