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.
For a start, you can install a C-compiler.
You cannot 'install' programming languages. Instead, you can try to install a compiler or an IDE.
Run (from a terminal): sudo apt-get install gcc build-essential
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.
First, install a C-compiler.
Source programs don't run, obviously, so you should install the compiler first.
You cannot install a programming language on your computer, only a particular compiler. Pick one.
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.
You cannot install a programming language on your computer. If you want to install a compiler, see the attached link.
You should install a C or C++ compiler first.
cross compiler . hybird compiler . post compiler. ideal compiler. intelligence compiler.
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.