有关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的原代码我在附件中给出,希望高手解决一下,小弟感谢万分!