answersLogoWhite

0


Best Answer

Turbo C++ pre-dates the earliest C++ standard, ISO/IEC 14882:1998 (informally known as C++98). As such it is impossible to write standards-conforming C++ programs in Turbo C++. In particular, it lacks template metaprogramming and exception handling both of which are central to C++., and there is no standard template library because it didn't exist at the time. It's also 16-bit which limits its memory usage to 64KB, although DPMI can extend that limit to some degree.

Development of Turbo C++ effectively ceased in 1994. It was later revived in 2006 with two separate releases, Explorer (the free version) and Professional, but none of its inherent problems were resolved and no further development took place. Embarcadero acquired the software from Borland in 2008 and support was discontinued in 2009.

Today, the free version of Turbo C++ still finds uses in educational institutes (primarily in Asia) despite the fact it's of no practical use in learning C++ let alone writing C++ programs.

Turbo C++ was succeeded by C++ Builder. The current stable release is v10.1 Berlin, released in 2016.

User Avatar

Wiki User

7y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

You run a C++ program at the command prompt the same way you run any program.  You type the name of the executable file.  If the file is not in the working directory, the path, or the windows directories, or identified in the registry, then you need to specify the path name along with the file name.

This answer is:
User Avatar

User Avatar

Wiki User

10y ago

You can directly press ctrl + f9 on your keyboard or you can go to the menu and then click on RUN.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

a simple program in turbo c:

main()

{

println (" Hello this is simple program of c Long. ");

}

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

No, but you can run Java programs in Command Prompt. Use java.exe:

c:\path> javac MyFirstProgam.java

c:\path> java MyFirstProgam

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can you run java program in turbo c or c plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can you run java program without applying main method?

yes we can run java program without using main. we can run program by declaring the variable static..


How do you run and compile a java applet program?

One can run and compile a Java applet program by agreeing to the terms and downloading it. It is possible to get a compiler online that will compile and run Java programs.


How do you execute a Java program?

You can run a Java application from the command line using "java <name of the class>"


How can you run frame program in java?

Same as that of the applet we need to run this frame...........


Why it is required to set path and classpath?

to compile and run java program you need to set path and classpath path refers to binary used to compile and run java program i.e. "javac" for compilation and "java" for execution


Difference between a java complier and the Java JIT?

A java compiler takes Java source code and turns it into Java bytecode, which can then be run by the java virtual machine.Using JIT means that the java code will be compiled and executed at the time that you run the program, which will slow down the program because it has to compile the code at the same time that it runs.


Why you same name in class and file in java?

For run the program


Why you start java program by class?

without class non of the folder can run so the java program should start in class we can use the class without object in java


What is the name of the command to run a java program?

javausage: java path\FooBar will execute path\FooBar.class


Why is a Java Download so important?

Java is important because it a program to run certain games or videos.


How do you run the frames in java?

first compile java program using "javac" then run frame using "appletviewer". e.x. = appletviewer filename.java


How java programs can ensure wora philosophy?

Translating a java program into bytecode makes it much easier to run a program in a wide variety of envirenments becouse only the JVM needs to be implemented for each platform.Once the run time packages exists packages exist for given system, any java program can run on it.