我正在使用 Windows 7-64 位。Borland C++ 5.5 不工作。
测试文件 Hello.c
#include<stdio.h>
int main(void)
{
printf("Hello world!\n");
return 0;
}
错误 E2209 Hello.c 1:无法打开包含文件“stdio.h”
警告 W8065 Hello.c 5:调用函数“printf”,而函数 main 中没有原型
* 1 编译中的错误 *
我已经用这些配置制作了 bcc32.cfg 和 ilink.cfg
bcc32.cfg
-I"c:\Borland\BCC55\include"
-L"c:\Borland\BCC55\lib"
ilink32.cfg
-L"c:\Borland\BCC55\lib"
:使困惑: