tft每日頭條

 > 科技

 > c語言建立多文件工程

c語言建立多文件工程

科技 更新时间:2025-01-23 00:58:31

c語言建立多文件工程?文件→新建→“文件”選項卡→C Source File→輸入文件名:singleFile.c;,我來為大家科普一下關于c語言建立多文件工程?以下内容希望對你有幫助!

c語言建立多文件工程(程序的典型結構)1

c語言建立多文件工程

1 單文件結構

文件→新建→“文件”選項卡→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每日頭條,我们将持续为您更新最新资讯!

查看全部

相关科技资讯推荐

热门科技资讯推荐

网友关注

Copyright 2023-2025 - www.tftnews.com All Rights Reserved