C语言怎么进行多文件编译,VC++6.0,要求详细步骤 10

程序1#include<stdio.h>voidreport_count();voidaccumulate(intk);intcount=0;intmain(void){... 程序1
#include<stdio.h>
void report_count();
void accumulate(int k);
int count = 0;
int main (void)
{
int value;
register int i;
printf("Enter a positive integer(0 to quit):");
while(scanf("%d",&value)==1&&value>0)
{
++count;
for(i = value;i>=0;i--)
accumulate(i);
printf("Enter a positive integer(0 to quit):");
}
report_count();
return 0;
}
void report_count()
{
printf("Loop executed %d times\n",count);
}
程序2
#include"stdio.h"
extern int count;
static int total = 0;
void accumulate(int k)
void accumulate(int k)
{
static int subtotal = 0;
if(k<=0)
{
printf("loop cycle: %d\n",count);
printf("subtotal: %d: total: %d\n",subtotal,total);
subtotal = 0;
}
else
{
subtotal +=k;
total +=k;
};
}
展开
 我来答
金色潜鸟
2013-09-26 · TA获得超过3.2万个赞
知道大有可为答主
回答量:1.3万
采纳率:89%
帮助的人:5682万
展开全部
程序1 存入 a1.c
程序2 存入 a2.c
删去 程序2 里 多写 的 一行 void accumulate(int k)
========
MS VC++ 6.0 编译命令:
CL a1.c a2.c
得到 a1.exe
运行 a1.exe 便可。
(其它编译器, 请照猫画虎。)
追问
MS VC++ 6.0  编译命令:
CL a1.c a2.c
编译命令在哪输入啊? 你能截图吗
追答
在命令窗(DOS 黑窗,cmd窗 。。。你叫它什么?)拍入啊。
huang71216
2013-09-27 · 超过37用户采纳过TA的回答
知道小有建树答主
回答量:171
采纳率:0%
帮助的人:84.4万
展开全部
将以上文件在一个工程中,就可以了,然后将函数定义,抽出来放在.h文件中,使用时,cpp\c文件,引入头文件即可,如:##include "XXXX.h"
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
南柯一梦098913
2013-09-26
知道答主
回答量:37
采纳率:0%
帮助的人:21.3万
展开全部
你需要将各个函数的头文件在main函数中定义,这些函数要在.c/.h中编写实现
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式