#include stdio.h#include math.hint main () {printf(Value 8.0 ^ 3 = %lf\\n, pow(8.0, 3));
编程学习网为您整理以下代码实例,主要实现:C语言库宏va_end(),希望可以帮到各位朋友。
#include <stdio.h>
#include <math.h>
int main () {
printf("Value 8.0 ^ 3 = %lf\n", pow(8.0, 3));
printf("Value 3.05 ^ 1.98 = %lf", pow(3.05, 1.98));
return(0);
}