| Your choice of compilers |
| At the time of writing this tutorials, Borland officered 5.5 compiler, or you may download their builder for 30 days. It would be worth of trying and learning. With command line tools you will miss the essence of a debugger. |
![]() |
| Once you run the above executable, installer will add a folder and files
as shown in the image below. You need to create these two configuration files Installing and running the Command Line Tools
|
| You would note the following files added in that folder
|
| Now you have a file "test.cpp", to test your installation; now call it
from a command line as shown below.
|
|
|
| How far we can go with this; all the way at your cost of time. The IDE offers you more |
| installation of debugger
|
![]() |
#include <iostream> //bcc32 -tWM test.cpp int main() { std::cout << "Welcome to C++!\n"; return 0; // indicate that program ended successfully } |
![]() |