answersLogoWhite

0


Best Answer

If you mean interpreter, there is no such thing. C++ is a compiled language. This means that the source code is compiled to produce object files which are then linked to produce a native machine code executable.

Interpreted languages such as BASIC work differently. Rather than compiling the code to produce an executable which can then be run, the code is translated into machine code one line at a time by another program, the interpreter. Once a line of code is interpreted, it is executed, then the next line is fetched and interpreted. However, the previous line is lost and must be reinterpreted the next time it is encountered. As a result of this, interpreted programs do not perform as well as compiled programs. However they can be executed immediately without waiting around for compilation, which can take many minutes when the program is large.

Languages such as Java are a hybrid of both compilation and interpretation. The Java compiler compiles the source code into byte code which is suitable for interpretation by any Java virtual machine. This is faster than interpretation alone, but not as fast as compilation alone but, once compiled, Java programs can be executed on any hardware that supports a JVM (which is pretty much everything out there today). By contrast, C++ must be recompiled separately upon each target platform.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the C plus plus translator used?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which translator is needed for C programming language?

C compiler


What is the mean c plus plus in machine code?

It is used to distinguish between the C or C++


Why functions are not used in c plus plus?

Of course they are used. Both stand-alone and class-member functions are used in C++.


What is c plus plus primarily used for?

Programming.


What are translator in c language?

The assembler is translator which converts assembly language code into machine language code.


Is c plus plus can be used in game programming?

yes! why not! this c program is used in ATM servicesand also in games.


Which translates c source code into object code before the program can be executed?

Question #1: Compiler.Question #2: If you want to execute an external program in C, use function system.A translator in computer programming is a piece of software that translates one programming language to another.Therefore a C translator would translate either C source code into another language, let's say BASIC.So if you had a C to BASIC translator, you would write a program in C and the translator would give you the equivalent source code in BASIC.I have never used a translator, but at first glance, it doesn't sound very reliable for both security and memory management reasons.


What is diffence between c and c plus plus?

main difference b/w c and c++ is that c is procedural language whereas c++ is object oriented language also classes are not used in c but in c++ classes are used.


Which compiler is used for writing c plus plus exception handling programs?

C++ compiler, obviously, a C compiler won't do.


How C plus plus is better than C?

C++ is a language code for computer and lapatops which is used in programming but C is a grade so they are different.


Which statement is not frequently used in C plus plus?

The goto statement.


Which operator is used for deallocating memory in c plus plus?

delete