I am unable to download applications such as Turbo C++ and related applications even though i have DOS box terminal. When I try to open the Turbo C++ setup it doesn't open and I get a message saying
application x-ms download type is not supported.
I am unable to download applications such as Turbo C++ and related applications even though i have DOS box terminal. When I try to open the Turbo C++ setup it doesn't open and I get a message saying
application x-ms download type is not supported.
As @Rahul said in the comments, you are probably trying to install .exe file. You have two options to run C++ in Ubuntu.
Or
To install g++ type in terminal, sudo apt-get install g++
. This will install the latest g++ package.
Then write any C++ program in gedit or in any of your favorite text editor, and save as "filename.cpp".
For compiling and running C++ program, follow this link.
For your reference. Compiling:
g++ progcpp.cpp -o progcpp
Running:
./progcpp
One need to follow the below steps in order to run Turbo-C in Ubuntu [Linux] .We need DoxBox Emulator to launch Turbo-C compiler in Ubuntu.
You can also watch a tutorial about this installation. Youtube - Installing Turbo C++ in Ubuntu
.exe
file in Ubuntu which is not supported unless you install a utility calledwine
. – Rahul Jan 29 '17 at 06:46