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;
};
} 展开
#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;
};
} 展开
3个回答
展开全部
程序1 存入 a1.c
程序2 存入 a2.c
删去 程序2 里 多写 的 一行 void accumulate(int k)
========
MS VC++ 6.0 编译命令:
CL a1.c a2.c
得到 a1.exe
运行 a1.exe 便可。
(其它编译器, 请照猫画虎。)
程序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窗 。。。你叫它什么?)拍入啊。
展开全部
将以上文件在一个工程中,就可以了,然后将函数定义,抽出来放在.h文件中,使用时,cpp\c文件,引入头文件即可,如:##include "XXXX.h"
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你需要将各个函数的头文件在main函数中定义,这些函数要在.c/.h中编写实现
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询