c语言中的指数运算。
#include <stdio.h> #include <math.h> int main(void) { float tmp; tmp = pow(2,3); printf("pwo(2,3) = %f. ", tmp); return 0; }