answersLogoWhite

0

What is the difference between compiler and program?

Updated: 8/20/2019
User Avatar

Wiki User

11y ago

Best Answer

A compiler is actually a program.

However the function of a compiler it to take a programmers high level language code and render this as binary machine language instructions that a specific processor can execute.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference between compiler and program?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is DML Compiler?

What is difference between Compiler and DML Compiler


What are the difference between a compiler design and a compiler?

In Compiler there is no design word ,whereas in compiler design there is design word


What is the Difference between c and shell program execution?

The shell interprets the script, while the C-compiler generates a binary executable.


What is the difference between a compiler and a text editor?

An editor is just a program in which you write and edit the program. The compiler is used to compile the program, i.e., convert the program to machine understandable code. A development environment often combines the both into an intelligent application called the IDE or Integrated Development Environment.


How does a compiler interpret the difference between c and c plus plus?

from the extension of your file.If it has an extension of .cpp then it is a c++ programIf it's extension is .c, then it is a C program.


What is the difference between dynamic and static linking?

in a standard C# program, various built-in-functions, which are invoked by the program, are resolved to a library during compilation. the library contains code for these functions. the compiler identifies the library required for the function and copies the code from the library to the program. this technique is called static linking. when a program is compiled, the compiler does not copy the code from the library to the program. instead, the compiler inserts a reference, consisting of the name of the library and function, in the program. the reference is looked up at run time. this is called dynamic linking.


When does a program show a compiling error?

When a program contains a compiler error, the compiler will detect it, preventing the program from compiling. Compiler errors must be fixed before a program will compile successfully.


What is the difference between compilers and interpreters in c plus plus in tabular form?

C-compiler translates the C-source into Assembly or machine code. On the other hand, C-interpreter -- well, there is no such thing as C-interpreter.


What is the difference between java compiler and C compiler?

Greetings Technologist. The Java compiler compiles Java code, whereas the C compiler compiles C Code HTH Richard Wolf Software Architect


Which one gives better execution to the program switch or if else?

There is no difference between switch and if-else. A modern optimizing compiler should be able to generate the same code in both cases.


A computer program that converts the entire program into machine language at one time is called?

compiler


What is difference between C compiler and c Compiler?

The C-Compiler generates platform dependant code. Therefore the generated program runs only on the architecture (Intel, Motorola etc.) and OS (Windows, Linux, AIX ...) it was compiled for. Therefore it is as fast as can be. Java generates a virtual Byte-Code that needs to be interpreted by a second program. Therefore it is only necessary to port the Interpreter to the various platforms and operating systems.