当前位置: 代码迷 >> C语言 >> 有关c语言的问题 高手请进
  详细解决方案

有关c语言的问题 高手请进

热度:374   发布时间:2008-06-13 16:19:41.0
有关c语言的问题 高手请进
在网上找了很长时间都没找到答案,求助高手!
小弟现在在看一本c语言的科学和艺术,书中作者为了方便,自己编写了一些头文件,比如genlib.h等,而我用一般的编译软件根本没办法把这本书中的程序编译成功,我用的是vc6.0,我已经把genlib.h放进相应的目录中,但还是不行.比如
下面的程序:
#include <stdio.h>
#include "genlib.h"
{
    printf("Hello,world.\n");
}
下列错误:
--------------------Configuration: hello - Win32 Debug--------------------
Compiling...
hello.cpp
d:\microsoft visual studio\vc98\include\genlib.h(61) : error C2371: 'bool' : redefinition; different basic types
        h:\c&c++\hello.cpp(0) : see declaration of 'bool'
h:\c&c++\hello.cpp(3) : error C2447: missing function header (old-style formal list?)
执行 cl.exe 时出错.

hello.obj - 1 error(s), 0 warning(s)

genlib.h的原代码我在附件中给出,希望高手解决一下,小弟感谢万分!
搜索更多相关的解决方案: c语言  

----------------解决方案--------------------------------------------------------
提示: 作者被禁止或删除 内容自动屏蔽
2008-06-13 08:32:33
lingluoz

来 自:苏州科技学院
等 级:新手上路
威 望:4
帖 子:749
专家分:0
注 册:2008-2-2
  得分:0 
根据l.wing风格 最好把bool改成_bool
----------------解决方案--------------------------------------------------------
好的,我试试,谢谢哈!
----------------解决方案--------------------------------------------------------
能不能加我qq271158810啊,界水乘风
----------------解决方案--------------------------------------------------------
还是不行啊,我改了,以前的那个错误没有了,不过又有这个错误:
--------------------Configuration: hello - Win32 Debug--------------------
Compiling...
hello.cpp
h:\c&c++\hello.cpp(3) : error C2447: missing function header (old-style formal list?)
执行 cl.exe 时出错.

hello.obj - 1 error(s), 0 warning(s)
----------------解决方案--------------------------------------------------------
提示: 作者被禁止或删除 内容自动屏蔽
2008-06-13 08:46:07
yshwy2008

等 级:新手上路
帖 子:9
专家分:0
注 册:2008-6-13
  得分:0 
呵呵,好了,少了个void main(),这下好了,谢谢了哈,能加我qq啊,还有其他问题要问你们啊271158810
----------------解决方案--------------------------------------------------------
晕倒 被这个include误导了
----------------解决方案--------------------------------------------------------
  相关解决方案