How to use "Borland C / C 5.5.1 for Win32"
"Borland C / C 5.5.1 for Win32" is a C / C compiler that Borland released free from 2000, which features a variety of SDK, with a small capacity, and installed only 8MB. Borland's current flagship product "C Builder 5" is built into this compiler, the latest "C Builder 6" built-in "Borland C / C 5.6".
Its free is only available for non-profit software development, as well as teaching.
Since there is no integrated development environment, it is more difficult to use some developers, here I specially tell these developers to tell it.
First, download
It is recommended that you go to Borland's official website www.borland.com to download, but please read it first, if you don't agree, please don't download it.
Borland website
Second, install
Run the installer, the interface is as follows:
Click "Next (n)>" button, the following interface appears:
Select the installation path in this interface, generally use the default path, click "Finish" to complete the installation.
Third, establish a configuration file
The configuration files mentioned here are could be built, but it is recommended to establish better.
Create a text file in the c: / borland / bcc55 / bin directory, and renamed BCC32.CFG, open this file using the Edit Tool, and enter the following:
-I "c: / borland / bcc55 / incrude" -l "c: / borland / bcc55 / lib"
Establish iLink32.cfg in the same directory, and enter the following:
-L "c: / borland / bcc55 / lib"
Four, use
Program compiled by the command line may not be used to it, but it can only be used. For example, compiler Hello.cpp
BCC32 Hello.cpp