c语言中的指数运算。

#include <stdio.h>
#include <math.h>

int main(void)
{
    float tmp;
    
    tmp = pow(2,3);
    
    printf("pwo(2,3) = %f.\n", tmp);
    
    return 0;
} 

c语言中的指数运算_#include