answersLogoWhite

0

How do you install compiler?

User Avatar

Anonymous

12y ago
Updated: 2/10/2023

Try to execute INSTALL.EXE

I will suggest to use Dev- C++ OR code Blocks IDE instead of turboC because it is old and not good with new windows versions.

although if you want to install turbo c , just type in a good search engine "install turboc compiler",and you will find a number of results for download and install help.

User Avatar

Eldon Hilpert

Lvl 10
2y ago

What else can I help you with?

Related Questions

How i will get c language on my PC?

For a start, you can install a C-compiler.


How we can install the c and c plus plus?

You cannot 'install' programming languages. Instead, you can try to install a compiler or an IDE.


How do you install gcc compiler in Ubuntu?

Run (from a terminal): sudo apt-get install gcc build-essential


You have installed the openSUSE 11.1 on your PC but the gcc command is not working there then what should you do?

this only happen if o.s. is not installed completely with compiler options.for it just install the c compiler from the install option.it will work. thank u.


How do you compile a c program in windows OS?

First, install a C-compiler.


How can you run C programes in ubuntu 10.10 without any gcc compiler?

Source programs don't run, obviously, so you should install the compiler first.


How do you install c plus plus in 64bits window7home?

You cannot install a programming language on your computer, only a particular compiler. Pick one.


How do you install turboc compiler?

Try to execute INSTALL.EXE I will suggest to use Dev- C++ OR code Blocks IDE instead of turboC because it is old and not good with new windows versions. although if you want to install turbo c , just type in a good search engine "install turboc compiler",and you will find a number of results for download and install help.


When you install C LANGUAGE display 16 dilogbox on that dialogbox display install pif file so please give you answer quick?

You cannot install a programming language on your computer. If you want to install a compiler, see the attached link.


How do you run c or c plus plus in windows 7?

You should install a C or C++ compiler first.


How many types of compiler naming in list?

cross compiler . hybird compiler . post compiler. ideal compiler. intelligence compiler.


What does building the compiler exactly means how does this differs from installing the compiler in perspective of GCC?

Installing a compiler, not just the gcc compiler, is a process where you copy the various executable files to the installation directory, where you copy the various header files to the include directory, where you copy the various library files to the lib directory, in short, where you install the compiler program and configure it so that it can do its work, namely to compile programs. This is no different than installing any other program, such as the game Myst. Building a compiler, on the other hand, is the process where you use a compiler, or other tools, to compile a set of programs that represents the compiler. If this sounds circular, consider this... The game Myst is a program. You install it in order to play it. When you run it, you load and run the executable code that represents Myst. It also has source code, though you probably can not get a copy of that source code. You build Myst by compiling the source code into object code, and then linking an executable from that object code. Building a compiler is no different. It is a program. It has source code. You build it by compiling the source code into object code, and then linking an executable from that object code. When you do this to a compiler, however, you need to distinguish between the compiler that you are building and the compiler that you are using to build the compiler. Sometimes, the compiler is used to compile a new version of itself, in a different directory. Sometimes, a different compiler is used, such as using a simplified version of C to compile a C++ compiler.