Turbo C++ questions & answers

Choose the most popular programs from Audio & Video software
G
Question by Guest
529 views
May 2, 2018

The "=" function is not working in Turbo C++ on Windows 10.

R
Answer by Robert Polubinski

This happens when you are using the old version of Turbo C++. There are some developers that redeveloped the application.


I believe this is the case on your side. Try downloading the latest version replacing the old one installed in your PC and it should work.


There were other users who had the same issue and it was gone.

G
Question by Guest #38300633
352 views
June 10, 2015
S
Answer by Sean Hill

Turbo C++ is not compatible with Windows 8. You will need an application that emulates DOS operating system. Luckily, there is one called DOSBox. Install DOSBox that works in Windows 8.1 then place the TURBO C++ files into a folder (let's say C:\turbo).


From the DOSBox terminal, type: mount C: C:\turbo. Once it's mounted, navigate to turbo folder using CD C:\turbo and then you can launch the installation.


Notice that you'll have to mount the folder each time you want to start Turbo C++.

G
Question by Guest
256 views
February 12, 2014
M
Answer by Mary Nett

Before you start to the installation process you need to download the setup file from the Internet. Unfortunately on Software Informer application's application database this application is not reviewed yet, so you are not able to download it from there. Therefore, you will need to go to its official webpage and download it directly from there. After the download is finished, you can start the installation right away. Follow the steps and in only a few moments you will have Turbo C++ installed on your computer and ready to be used. Also, what you are enabled to download from its official website is only a trial version with that allows you to work with Turbo C++ only 30 day. For a full-featured application, you will need to pay.

G
Question by Guest
458 views
January 7, 2010
J
Answer by Julia Bocchetta

There are already created programs for BMI. However, if you access Google, you will notice that there are users who posted source code for various applications related to BMI. I recommend accessing Google and then visit the first link. There is a code of a BMI program. Since the author is mentioned in the code, you can use the following one to build or adjust the program's settings:


// BMI.cpp : Defines the entry point for the console application.
//BMI Calculator
//Created by Rahul Kucheria
//Oct 29th, 2011
#include "stdafx.h"
#include
#include
#include
using namespace std;
int main()
{
float weight;
float height;
float bmi;
char response;
do
{
cout << "*****************************\n";
cout << "Please enter your weight (lbs): ";
cin >> weight;
cout << "Please enter your height (inches): ";
cin >> height;
bmi = (weight / pow(height,2)) *703;
cout<<"\n";
cout << fixed << showpoint << setprecision(2);
cout<<"Your BMI is " << bmi << endl;
if (bmi < 18.5)
{
cout << "You are underweight!" << endl;
cout << "Eat more!!" << endl;
}
else if (bmi >= 18.5 && bmi <25)
cout << "You are normal!"<else if (bmi >= 25 )
cout << "You are overweight!"<else
cin.get();
cin.get();
cout << endl;
cout << "Would you like to enter the information again? ";
cin >> response;
}
while (toupper(response) == 'Y');
cout << "Okay, see you next time.." << endl;
return 0;
}
See more questions & answers

Ask a question about Turbo C++

Alternative downloads

DHCP Turbo
rating

DHCP Turbo puts you instantly in control of the devices on your network.

Turbo Spirit
Free
rating

The arch-forefather of all motorcycle games - a true classic!

Turbo-Locator
rating

Relocates compiled 16bit x86 code and creates executable EPROM, FLASH or RAM.