fork download
  1. #include <math.h>
  2.  
  3. float f(int a, int b) {
  4. return pow(a, b);
  5. }
  6.  
  7. int main() {
  8. printf("%f", f(3,3));
  9. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
27.000000