I believe that it's for Windows only, although you should be able to run it in WINE.
Pretty much every Linux distro comes with the GNU compilers, though. I generally do my coding in emacs and then use gcc to compile it.
Friday, July 31, 2009
Why cant Turbo C work in my windows xp pc ?
Ive run it but after i wrote the program and then pressed ctrl+f9 it just paused...i cant see what my program actually look like.Can anyone help me ?
Why cant Turbo C work in my windows xp pc ?
You have a problem, but not the one you think you have. And I can explain what is going on, though I can't remember the exact key strokes to solve it.
In the Turbo C and / or Turbo C++ IDE, you can compile automatically but you won't see any output from a program or compiler until you switch to the output screen. Any program that you run or build and execute will be running in a shell, not the main IDE screen. You must look at the IDE menu options and find one that allows you to "Switch to Output Screen" or "Switch to Shell". Sorry that I don't remember the exact phrase and where it is located, but when you find it, you'll know it.
Why cant Turbo C work in my windows xp pc ?
You have a problem, but not the one you think you have. And I can explain what is going on, though I can't remember the exact key strokes to solve it.
In the Turbo C and / or Turbo C++ IDE, you can compile automatically but you won't see any output from a program or compiler until you switch to the output screen. Any program that you run or build and execute will be running in a shell, not the main IDE screen. You must look at the IDE menu options and find one that allows you to "Switch to Output Screen" or "Switch to Shell". Sorry that I don't remember the exact phrase and where it is located, but when you find it, you'll know it.
Could I download the Turbo C/C++ Compiler Free from internet.if yes from where and How.plz reply soon n detai?
hey u can download C-Free Compiler from
www. download.com
You can do both C %26amp; C++.
It has good %26amp; easy to use graphical user interface.
Here is the download link:
http://www.download.com/3120-20_4-0.html...
Could I download the Turbo C/C++ Compiler Free from internet.if yes from where and How.plz reply soon n detai?
yes u can from download .com you get many software 4 free...........
Reply:I didn't know whether it can be downloaded from net, but i have the software. if u like i can send it u. i need ur mail id.
ramajeyam@hotmail.com
Reply:tell Me your Email ID i will send U,
other wise
mail me ur information on razi_software@rediff.com
lik email Id if u lik
ok
best of luck
Reply:ya , U can download it freely from the net. U can search for "TurboC download" on google for it.
or Visit this site
http://www.programmersheaven.com/downloa...
Reply:ok
www. download.com
You can do both C %26amp; C++.
It has good %26amp; easy to use graphical user interface.
Here is the download link:
http://www.download.com/3120-20_4-0.html...
Could I download the Turbo C/C++ Compiler Free from internet.if yes from where and How.plz reply soon n detai?
yes u can from download .com you get many software 4 free...........
Reply:I didn't know whether it can be downloaded from net, but i have the software. if u like i can send it u. i need ur mail id.
ramajeyam@hotmail.com
Reply:tell Me your Email ID i will send U,
other wise
mail me ur information on razi_software@rediff.com
lik email Id if u lik
ok
best of luck
Reply:ya , U can download it freely from the net. U can search for "TurboC download" on google for it.
or Visit this site
http://www.programmersheaven.com/downloa...
Reply:ok
Where can i download Turbo C/C++ compiler for free?
Windows Version
Where can i download Turbo C/C++ compiler for free?
From here:
http://www.codegear.com/Default.aspx?tab...
Thanks,
Gabriel Topala
http://www.gtopala.com
Reply:This is better
www.bloodshed.net
hollyhock
Where can i download Turbo C/C++ compiler for free?
From here:
http://www.codegear.com/Default.aspx?tab...
Thanks,
Gabriel Topala
http://www.gtopala.com
Reply:This is better
www.bloodshed.net
hollyhock
What is ANSI c++ and Turbo C++?
C++ is a language that was invented by Bjarne Stroustrup in 1983.
Turbo C++ is an implementation of the language by borland which was created before a common standard was adopted. It was fairly popular until several years ago.
In 1998, a standard was adopted for C++ : ANSI C++, but for several years, compilers did not comply fully with the standard. There are now several compilers who are fairly compliant.
What is ANSI c++ and Turbo C++?
they are one of the programming languages
Reply:programming languages. Other examples of which are visual basic, pascal
Turbo C++ is an implementation of the language by borland which was created before a common standard was adopted. It was fairly popular until several years ago.
In 1998, a standard was adopted for C++ : ANSI C++, but for several years, compilers did not comply fully with the standard. There are now several compilers who are fairly compliant.
What is ANSI c++ and Turbo C++?
they are one of the programming languages
Reply:programming languages. Other examples of which are visual basic, pascal
Error in turbo c++ programming.?
i have errors in the following programme after compiling.
#include%26lt;iostream.h%26gt;
#include%26lt;conio.h%26gt;
int main()
{ clrscr();
char ch='A';
int num = ch;
cout%26lt;%26lt;"The ASCII code for"%26lt;%26lt;ch%26lt;%26lt;"is"%26lt;%26lt;num%26lt;%26lt;"\n";
cout%26lt;%26lt;"Adding 1 to the character code :\n";
ch = ch+1'
num=ch;
cout%26lt;%26lt;"The ASCII code for"%26lt;%26lt;ch%26lt;%26lt;"is"%26lt;%26lt;num%26lt;%26lt;"\n";
return 0;
}
when i runs this programme the error comes-LINKER ERROR:UNABLE TO OPEN FILE "TCCLASSLIB".
Error in turbo c++ programming.?
Computer Tutorials, Interview Question And Answer
http://freshbloger.com/
Reply:I can't believe people are still using Turbo C++.
I think you are getting that error because you are missing some library files that the compiler uses by default. Can you get any program to work?
Reply:In compiler settings, find path definition and add path to the required library.
Reply:Ensure that there is a file called TCCLASSLIB among the files in Turbo C++ Package.....If not get the software again installed on ur PC...
Reply:Hey, the first game I ever wrote was in Turbo C++ 3.0! Of course, that was in '97....
Did you copy %26amp; paste this code? There's a syntax error:
ch = ch+1'
It should probably be:
ch = ch+1;
I've seen weird linker errors come up if it can't compile, so make sure the compile stage completes successfully. Other than that, make sure that you're correctly including the library.
I agree with Machael's statement about the antiquated Turbo C++, however. You may want to look into using another compiler. There are several free ones out there, such as Bloodshed (which uses gcc) or Visual Studio 2005 Express Edition.
-Rez
#include%26lt;iostream.h%26gt;
#include%26lt;conio.h%26gt;
int main()
{ clrscr();
char ch='A';
int num = ch;
cout%26lt;%26lt;"The ASCII code for"%26lt;%26lt;ch%26lt;%26lt;"is"%26lt;%26lt;num%26lt;%26lt;"\n";
cout%26lt;%26lt;"Adding 1 to the character code :\n";
ch = ch+1'
num=ch;
cout%26lt;%26lt;"The ASCII code for"%26lt;%26lt;ch%26lt;%26lt;"is"%26lt;%26lt;num%26lt;%26lt;"\n";
return 0;
}
when i runs this programme the error comes-LINKER ERROR:UNABLE TO OPEN FILE "TCCLASSLIB".
Error in turbo c++ programming.?
Computer Tutorials, Interview Question And Answer
http://freshbloger.com/
Reply:I can't believe people are still using Turbo C++.
I think you are getting that error because you are missing some library files that the compiler uses by default. Can you get any program to work?
Reply:In compiler settings, find path definition and add path to the required library.
Reply:Ensure that there is a file called TCCLASSLIB among the files in Turbo C++ Package.....If not get the software again installed on ur PC...
Reply:Hey, the first game I ever wrote was in Turbo C++ 3.0! Of course, that was in '97....
Did you copy %26amp; paste this code? There's a syntax error:
ch = ch+1'
It should probably be:
ch = ch+1;
I've seen weird linker errors come up if it can't compile, so make sure the compile stage completes successfully. Other than that, make sure that you're correctly including the library.
I agree with Machael's statement about the antiquated Turbo C++, however. You may want to look into using another compiler. There are several free ones out there, such as Bloodshed (which uses gcc) or Visual Studio 2005 Express Edition.
-Rez
I installed turbo C Language in computer but that does not run any one can help me?
Maybe i'm mistaken, but isn't turbo C, really old, like really really old? In a way that it may not even run on current version of windows?
I installed turbo C Language in computer but that does not run any one can help me?
Does it require GCC to be installed to in order it can be running properly?
I installed turbo C Language in computer but that does not run any one can help me?
Does it require GCC to be installed to in order it can be running properly?
Subscribe to:
Posts (Atom)