fork download
  1. #include <stdio.h>
  2. #include <math.h>
  3. int main()
  4. {
  5. double result=pow(3,7);
  6. printf("3^7=%0f\n",result);
  7. return 0;
  8. }
Success #stdin #stdout 0.01s 5324KB
stdin
Standard input is empty
stdout
3^7=2187.000000