answersLogoWhite

0


Best Answer

A program that translates source code into object code. The compiler derives its name from the way it works, looking at the entire piece of source code and collecting and reorganizing the instructions. Thus, a compiler differs from an interpreter, which analyzes and executes each line of source code in succession, without looking at the entire program. The advantage of interpreters is that they can execute a program immediately. Compilers require some time before an executable program emerges. However, programs produced by compilers run much faster than the same programs executed by an interpreter.

Every high-level programming language (except strictly interpretive languages) comes with a compiler. In effect, the compiler is the language, because it defines which instructions are acceptable.

Because compilers translate source code into object code, which is unique for each type of computer, many compilers are available for the same language. For example, there is a FORTRAN compiler for PCs and another for Apple Macintosh computers. In addition, the compiler industry is quite competitive, so there are actually many compilers for each language on each type of computer. More than a dozen companies develop and sell C compilers for the PC.

User Avatar

Wiki User

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

Wiki User

13y ago

In C language there are no compilers, but there are loads of compilers for C language, some of them are free.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

a compiler development approaches to meathod of any desinig od tools and functions who create any language transformation design

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the Various compilers of different language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are some of the top compilers for the C Computer Language currently used in the technology industry?

There are a number of top compilers for the C Computer Language which is currently used in the technology industry. You can try such compilers as C++, C Front and others.


What are the various types of compilers used in computers?

Compiler can be divided into following four main types. 1. one pass compilers 2. multi pass compilers 3. load and go compiler 4. optimizing compilers


Why you require different operating system for different compiler?

Actually it's the other way around. You require different compilers for different operating systems. The reason for this is that an operating system is basically an intermediate step for a person to be able to interact with the hardware on their system. Each OS has a different way to do this, and so compilers must be different for each one, even for the same language.


What is compiler writing tool?

they are tools to help developed compilers


How can you request a video game?

You can't. However, you could research a programming language like Java or C++, download compilers, photoshop, and various other programs, and make your own game.


Can two compilers from different language share components. how?

The lexical scanner is one of the good candidate to be shared among different compilers. The breakdown of tokens should be the same, or at least similar. However, the interpretation of those tokens will be different between languages. The storage of those tokens, stacks, or hash tables, can be the same as well (reusable component).


All compilers are written in C and to run a C code you need a compiler..how was the first program was compiled?

All compilers were not written in C. Some are written in Assembly Language.


Where can you download vista supported C language?

Programming languages cannot be downloaded. Compilers can be, though.


Are all the different OS uses same c language compiler?

No. While some compilers may exist for multiple operating systems, but a specific version is needed for each one.


What has the author Brian M Carlson written?

Brian M. Carlson has written: 'Discussion of portable compilers' -- subject(s): Compilers (Computer programs), Modula-2 (Computer program language), C (Computer program language), Translators (Computer programs)


Can language C works on Windows 8?

Yes. C is a general purpose programming language with compilers available for all versions of Windows.


C language is machine dependent?

Yes c is a complete machine dependent language as the memory allocated to its various variables having various data types is different. For example in some compilers the memory allocated to the char data type is 1 byte but in many compilers it may be 2 bytes also>>> thanks