c語言建立多文件工程?文件→新建→“文件”選項卡→C Source File→輸入文件名:singleFile.c;,我來為大家科普一下關于c語言建立多文件工程?以下内容希望對你有幫助!
文件→新建→“文件”選項卡→C Source File→輸入文件名:singleFile.c;
//singleFile.c
#include <stdio.h>
#define NUM 100
int max(int,int);
int main()
{
int a,b,x;
a=2; b=3;
x=NUM*max(a,b);
printf("%d\n",x);
system("pause");
return 0;
}
int max(int m1, int m2)
{
if (m1>m2) return m1 NUM;
else return m2 NUM;
}
//運行結果:10300
2 一個源文件和一個頭文件2.1 新建工程
文件→新建→“工程”選項卡→選擇:Win32 Console Application→輸入工程名:doubleFile→确定→單選按鈕勾選:一個空工程;
運行結果:
Input double a,then return,and b:
4.5
7.8
7.800000
3.075000
25.132741
-End-
,更多精彩资讯请关注tft每日頭條,我们将持续为您更新最新资讯!