answersLogoWhite

0


Best Answer

A compiler is a program that converts the language into machine code, also known as binary (1s and 0s). Not all programming languages need compilers. Some are assembly and still others can just be straight and utter machine code.

User Avatar

Wiki User

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

Wiki User

7y ago

A compiler is an executable that converts high-level source code into a lower level source code. Compilers are typically used to convert source code into a native machine code executable or an assembly language source, however they can also be used to convert to any programming language lower than the source language. For instance, Java uses a compiler to produce Java byte code which is suitable for interpretation by the Java virtual machine.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does compiler mean in programming?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Who was the first founder of programming language?

If you mean a HLL compiler, John Backus of IBM for FORTRAN.


How compiler compile a program?

With a compiler. Read the documentation for programming package for help on how to.


What is a C compiler as used in C programming?

In C programming, C compiler is user to translate C source into C object module.


What does a compiler allow us to do?

A compiler converts programming code into computer code that a computer can read.


What is the work of compiler?

A compiler converts a program in one programming language into a program in another programming language. Often the conversion is into a language that can be understood directly by the hardware.


What year was the programming language FORTRAN released?

The first FORTRAN compiler, an optimizing compiler, was delivered in April, 1957.


Which translator is needed for C programming language?

C compiler


What translates a programming language statement line by line?

A compiler


What is grammar in compiler design?

Is a specification for the syntax of a programming language.


What is compiler in computer programming?

A compiler is a program that translates high-level source code into low-level machine code.


What is booting in compiler design?

bootstrapping is a process of writing a compiler in the target programing language which it is intended to compile


What does it mean when the compiler in C programming says not an allowed type?

Exactly what is says. Example: double pi= 3.1415; switch (pi) { /* wrong! */