fork download
  1. #include <stdio.h>
  2. #include<math.h>
  3. int main(void) {
  4. double a=2,b=4;
  5. printf("%lf",pow(a,b));
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 9424KB
stdin
2
3
stdout
16.000000