Borland C 5.5编译器无法正常工作

时间:2012-12-25 07:13:12

标签: c compiler-construction

我使用的是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&amp; ilink.cfg与这些配置

bcc32.cfg

-I"c:\Borland\BCC55\include"  
-L"c:\Borland\BCC55\lib"  

ilink32.cfg

-L"c:\Borland\BCC55\lib"  

:confused:

1 个答案:

答案 0 :(得分:3)

首先查看你的include和library目录,看看它是否与你的borland C目录选项相同