Note For Indian Visitors

Due to the ban on adf.ly in india, Indian users will not be able to view the links directly. To access the links, kindly put https:// before the adf.ly urls OR replace adf.ly with v1.adf.ly to open download links in my site.

Free Download Turbo C++ 3.0 Compiler

Before the fancy flashy user interfaces and programming tools of the modern day, compilers like Turbo C 3.0 were the best way to develop your applications, and the program is not without its uses today.

Old School Programming

Turbo C, followed by Turbo C++, was a popular compiler in the late eighties and early nineties. Version 3.0, with Windows compatibility, was released in 1991. Although other versions followed, Turbo 3.0 was almost universally considered to be the most stable - always an important consideration when programming!

Sadly, by the mid-nineties Turbo C had been generally abandoned in favour of compilers with a more modern interface and functionality. Although the graphics interface is primitive by today's standards, Turbo C is still perfectly adequate for the development of applications and compilation of the code to obtain executable files. It probably won't be able to handle massive programs, but for teaching yourself the ropes of C or C++ it's a quick, easy and free way to get started. The nostalgia factor also can't be beaten - anyone who learned C++ in the early nineties and wants to check out their first programs will find Turbo C 3.0 a perfect blast from the past.

Conclusion: While you won't be using Turbo C 3.0 to develop the next big first person shooter it fulfils its role as a C and C++ compiler well. The old-school interface might take a little time to get used to, but Turbo C 3.0 is perfect for those who want a simple effective compiler for small C or C++ programs. 



Installation Instructions
  1. Download the archive from the link provided in the last of this post.
  2. Unzip it and place the contents of the archive into a folder inside your Drive C. (e.g., C:\tcpp3)
  3. Please observe:
    C++
    The above is the TC.EXE File that you MUST run.
    C++
    The above is the TC Shortcut file, don’t use it. 

    The compiler is the file named TC.EXE. Don’t confuse it with the TC shortcut! Simply double click on that and the compiler will run.
  4. Just before you type your C program code, please make sure you have the correct path for the INCLUDE Directory and LIBRARY Directory. You can check by clicking on Options -> Directories
  5. The path for the INCLUDE Directory must be C:\YourFolder\INCLUDE. For example, C:\tcpp3\INCLUDE. The file you downloaded uses tcpp3 as folder name, which is why I’m using the same folder name in my example. Please make sure you specify the correct path to the INCLUDE folder, this is crucial, or else it you would get errors. The INCLUDE folder should directly under tcpp3 folder, and tcpp3 folder is directly under your drive C folder.
  6. And the path for the LIBRARY Directory must be C:\YourFolder\LIB, for example C:\tcpp3\LIB. Again, check if you have the correct path to the LIB folder.
  7. Remember to change the YourFolder into the name of the folder you are using for your Turbo C++.
  8. You can now test a C program code. First, select File from the menu and choose new. Copy the sample codes at the end of this blog entry.
  9. After copying the codes, select Run from the menu, and choose Run. There should be an output of Hello World on the screen. The codes worked for me, please copy them carefully.

Hello World sample code for testing in C language

#include <stdio.h>
#include <conio.h>
int main(){
clrscr();
printf("Hello world!");
getch();
return 0;
}

Hello World sample code for testing in C++ language


#include 
main(){
cout << "Hello World!";
return 0;
}
Note for users of Windows 7 64-bit: You need to use DOSBox to emulate a 32-bit system because this compiler is not compatible with 64-bit. Install DOSBox, and mount your C:\ drive, or whichever drive you installed Turbo C in.
Note: The procedures on this post were tested on a computer running Windows XP and another which is running Windows 7 (both 32-bit and 64-bit). PLEASE make sure you follow the instructions carefully and copy the sample C program codes correctly before saying that what you downloaded doesn’t work

0 comments:

Post a Comment

Download Our Android App

download our android app

Online Reputation

ashutoshthehacker.com Webutation

Site Protected..!! Don't Copy

Contact Form

Name

Email *

Message *