CMake系列之二:入门案例-单个源文件

编写一个源码文件 如下 1 #include<stdio.h> 2 #include<stdlib.h> 3 4 double power(double base,int exponent) 5 { 6 int result = base; 7 int i; 8 if(exponent ==0){ 9 return 1; 10 }
相关文章
相关标签/搜索