Borland C++ Builder

Where to get?

The Borland C++Builder Compiler is available as a free download! Or you can obtain an older version of BC++ on CD with a book, for example, has a CD with the Borland C++ Builder 4 on it.

How to start?

Command line version

As we mentioned above the Borland C++Builder is a very big and powerful set of tools. Because of this sometimes it takes quite a while to start the Builder and to compile a program, especially if your computer is not very fast. Since we are not going to use many of the tools during the course it may be convenient and certanly faster to use command line compiler.

To use a command line compiler do the following steps:

  1. create a file main.cpp using any text editor (for example Notepad) and save the file in a newly created folder let's say C:\work\MyFirst.
  2. open the command window (click Start->Run...), type cmd, and hit "Enter"
  3. go to the folder you saved your program cd c:\work\MyFirst
  4. type bcc32 main.cpp
    If you typed everything correctly you should obtain several new files in your folder. So far we are interested in only one of them namely main.exe (or your_program_name.exe). This is the compiled program. To run it just type its name.