Skip to main content

Turbo C++ for Windows 7 64 bit


 Its a very simple guide to install Turbo C++ on Windows 7 64 bit  operating system.
Follow the steps below to install Turbo C++ compiler on your windows 7 ,64 bit operating system.

Note - Please let me know whether the process is working for you or if you are getting some kind of error.



Step 1) Install the software DOSBOX version 0.73(Search for it in the search bar).

Step 2) Create a folder on your C drive, e.g.Turbo; (c:\Turbo\)

Step 3) Extract TC into the created folder(e.g. c:\Turbo\);(you can search and download it)

Step 4)Run the application DOSBOX 0.73,previously downloaded and installed.

Step 5) Type the following commands at the command prompt that will appear,

[z]: mount d c:\Turbo\

Following this you will get a message "Drive D is mounted as local directory c:\Turbo\"

Step 6) Type d: to shift to d:

Step 7) Then type commands mentioned below;

cd tc

cd bin

tc or tc.exe

Step 8) In the turbo C++ go to Options\Directories\ Change the source of TC to the source directory .

Here's a video to help you out:




 Alternate method:
                                The alternate method of running C/C++ on windows 7-64bit system, is by using a software "Codeblocks" .
You can download codeblocks IDE from Codeblocks Download page.


Start writing your  First C Program..

Comments

Anonymous said…
hi this anubhav!!!!!! i m getting problem in installing turbo c compiler using dosbox in ma laptop which has i5 processor n running on windows 7 hom e premium 64-bit....................when i type cd tc....it shows unable to change to: tc............i donno wat to do plz help me ...plz send me da feedback on ma mail id "anubhavsharma92@yahoo.com".....
MLM Software said…
Thanks for sharing.. Nice info..

Pooja

MLM Developers India

http://mlmdevelopers.com/products/mlm-software/corporate-mlm-soft/feature.html
Anonymous said…
hi.while compiling most of the program,the compiler shows 0 error & o warning,but i am unable to execute it.plz,wat should i do?
mail me at-i3i5i7et@gmail.com
xyz said…
hi this Sudheendra!!!!!! i m getting same problem as Anubhav in installing turbo c compiler using dosbox in ma laptop which has i3 processor n running on windows 7 hom e premium 64-bit....................when i type cd tc....it shows unable to change to: tc............i donno wat to do plz help me ...plz send me da feedback on ma mail id sudheendra.baliga@gmail.com
hi.. i was looking how to install c
thanks dear...
i found this blog quite informative...keep the good work on.
viju said…
Its not easy to install Turbo C on windows 7. I found codeblocks software is better compared to turbo C. Its gui based and very easy to use.. Just go to http://www.codeblocks.org/downloads/26 and download for windows 7 and get started instead of doing all the hectic procedure to get turbo c working.. More over i found out that my computer heats up and makes a lot o noise when running turbo C in the above said method.. I think codeblocks is a decent free software for compiling C and C++ programs..
G.K. said…
I agree with Viju, we can also use codeblocks instead of installing borland on windows 7 64 bit system.
You can find codeblocks at
http://www.codeblocks.org/downloads
Anonymous said…
Hi viju/G.K!!!
I am unable to download the codeblocks from either beliosOS or sourceforge.net
Can you provide me with some alternate link for download.


Sujit
G.K. said…
Try again the links , the links are perfectly working.
G.K. said…
@ Sudheendra & Anubhav:

Make sure that the tc folder is present inside the turbo folder.
Unknown said…
thanks guys really helped a lot
Anonymous said…
plz help me.....i am using windows 7 64bit...i trying to run a graphic pgm in c...but getting linker error: undefined symbol _initgraph???
Hello dear,
Really nice blog dear. Thanks for sharing this info this info is very useful.
Prince Brown said…
ARIES TECH SOFT PVT LTD provides you with the best MLM(MULTI LEVEL MARKETING) software in binary as well as matrix form.MLM Software is very important and critical to your business success. MLM Software which is really a life line of any MLM company. MLM companies are running on trust. Without online software, it's really difficult to run your MLM Company. So before deciding for online software for your company, you need to examine the brief history of company.



mlm software Delhi
Prince said…
Thank You,Very Nice
Your Blog is very informative
Mlm Software Delhi
Geet said…
nice info....bt i have some problem....i got an error in each pro after compiling 'unable to create output file 'D:\TC\OUTPUT\NONAME.OBJ'..........plz ..plz..help me....
I remember old days when I used to run Turbo C on DOS Computers
Darsheel Mehta said…
I'm trying to do this, hope it works.

Popular posts from this blog

Calculating the average of two numbers using C++

Though this site aims at understanding C language, I am writing a program for you in C++, to have a general idea about C++ too. A program in C++,to calculate the average of two numbers, which are entered by the keyboard while the execution of the program. Try to understand the program; #include &lt iostream &gt using namespace std; int main() {     float num1,num2,average,sum;     cout << "Enter the first number:";     cin >> num1;     cout << "Enter the second number:";     cin >> num2;     sum=num1+num2;     average=sum/2;     cout << "The sum of the two numbers is:"<< sum<<"\n"<<"The average of the two numbers is:" << average; return(0); } Explaination: The new file header used here in this C++ program is the #include . By this , we are asking the preprocessor to add the contents of the iostream file to our program. The program is written in the

Finding the arithmetic operators

Below is a very simple program to find the arithmetic operator. Please feel free to put a comment if need an explanation. #include #include void main()   {     float a1,a2;     char operator;     printf("\n Enter the values of a1 operator a2\n");     scanf("%f%c%f",&a1,&operator,&a2);     switch(operator)      { case '+': printf("%.2f",a1+a2); break; case '-':  printf("%.2f",a1-a2);  break; case '*':  printf("%.2f",a1*a2); break; case '/':  if(a2==0)  printf("error\n");  else  printf("%.2f",a1/a2);  break; default: printf("unknown operatotr\n"); break;      }    }