标签:include double return
#include<stdio.h> #include<math.h> int main() { double x = pow(2.0,3.0); printf("The cube of 2.0 = %f\n",x); return 0; }
gcc以及共享库
原文地址:http://iamokay.blog.51cto.com/6035878/1571327