answersLogoWhite

0

C++ is conventionally regarded as a compiled language, however there's nothing in the language itself that prevents it from being interpreted.

User Avatar

Dustin Marks

Lvl 10
3y ago

What else can I help you with?

Related Questions

What are the interpreter in c plus plus?

C++ is a compiled language, not an interpreted language.


Is c plus plus a complied or interpreted language?

C++ is generally a compiled language.


Is C plus plus interpreted as the program is executed?

No. Neither C nor C++ are interpreted. Both need to be compiled and linked to produce highly-optimised machine code, which is then executed.


There a program that uses both interpreted and compiled code?

Yes.EasyTreve Plus has both an interpreted and a compiled version available.


Is lisp is both compiled and interpreted language?

Lisp is both compiled and interpreted language.


Is C compiled or interpreted?

Assembler, COBOL, PL/I, C/C++ are all translated by running the source code through a compiler. This results in very efficient code that can be executed any number of times. The overhead for the translation is incurred just once, when the source is compiled; thereafter, it need only be loaded and executed. Interpreted languages, in contrast, must be parsed, interpreted, and executed each time the program is run, thereby greatly adding to the cost of running the program. For this reason, interpreted programs are usually less efficient than compiled programs. Some programming languages, such as REXX™ and Java™, can be either interpreted or compiled.


Can all C programs are executable in C plus plus?

Some C programs can be compiled in C++, yes.


Is VB script language an interpreted or compiled language?

Interpreted.


Is a code written in Eiffel programming language compiled or interpreted?

Compiled.


What is the different between Compiler and Interpreter in C or C plus plus programming?

It is easy to tell: there is no interpreter for C and C++, they are compiled languages.


What is a compiled program that runs on the client inside of an interpreted program?

As far as I know, interpreted software does not run compiled software at all.


Is Java or C plus plus faster?

Java is considerably more convenient than either C or C++ due to its extremely high level of abstraction. However, that convenience comes at the cost of both performance and efficiency.