C语言库宏va_end()

#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);
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐