标题:DEV C建立工程后,多个.c函数无法编译
取消只看楼主
z562586756
Rank: 1
等 级:新手上路
帖 子:18
专家分:1
注 册:2011-4-30
结帖率:16.67%
 问题点数:0 回复次数:0 
DEV C建立工程后,多个.c函数无法编译
我分别建立了a.c ,b.c ,abc.h,放在同一目录了,在DEV C中建立了工程,一起放进去,但是无法编译啊。会显示why in the world are you trying to compile a empty project?...

源码:a.c:
#include <stdio.h>
#include <stdlib.h>
#include "abc.h"
int main (void)
{
    int a,b;
    puts("please input 2 numbers:");
    while (scanf("%d,%d",&a,&b)==2)
    printf("%d\n",plus(a,b));
    printf("%d",num);
    system("pause");
}

b.c:
#include "abc.h"
#include <stdio.h>
#include <stdlib.h>
int num=0;
int plus (int a,int b)
{
    num++;
    return (a+b);
}

abc.h:
//abc.h
int num;
int plus (int a,int b);

搜索更多相关主题的帖子: 目录 include numbers please 
2011-08-13 10:47



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-347507-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.200175 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved