answersLogoWhite

0


Best Answer

A compiler accepts computer instructions in a language people understand and converts them into a language computers understand.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the output of a compiler?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Computer Science

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 are the factors that decide number of passes for a compiler?

There are many. I have encountered compilers with as few as 2 passes to as many as 63 passes (this number of passes were necessitated by the very tiny magnetic core memory of the machine). I even encountered a compiler that the programmer that wrote it claimed was a 1 pass compiler, but on detailed examination all he had done was "piped" the output of pass 1 to the input of pass 2 (instead of writing it to an intermediate file between passes), so it was actually a 2 pass compiler. I have also encountered a language (the US Navy's CMS-2) that has both syntactic and semantic ambiguities that made it impossible to write a compiler (no matter how many passes) that could reliably compile all code given to it, to do what the programmer intended.


What is the master control program that runs the computer?

there are two possibilities here; one is the BIOS (BASIC INPUT OUTPUT SYSTEM) which sets up the hardware on a PC. ...or the Operating system which controls the installed hardware and the applications.


What Symbol table in compiler?

what is symbol table in computer


How do you setup robocode javac compiler for windows when I try to open the compiler.Below message appear Please wait while Robocode sets up a compiler for you.. javac does not exist.?

You dont.

Related questions

Is it possible to inherit structure in c?

If a C compiler is available, then so is a C++ compiler - just use one that produces C as its output.


What is finite Automata-compiler design?

single possible output for a given input


Why is object code necessary?

Object code is necessary, because object code is the actual instructions, or machine language, that the computer executes. Object code is the output of the compiler, as it translates the higher level language into the machine language. It is also the output of the linker, as it combines object code modules from the compiler output and the various libraries in its process of building a fully linked load module.


What is the role of data structure in compiler design?

The role of the data structure in compiler designer is to take an input of a program written in another language and produce an output in another language. It also performs error detection.


What is lexical analysis?

A compiler is usually divided into different phases. The input to the compiler is the source program and the output is a target program. Lexical analyzer is the first phase of a compiler which gets source program as input. It scans the source program from left to right and produces tokens as output. A token can be seen as a sequence of characters having a collective meaning. Lexical analyzer also called by names like scanner, linear analyzer etc.


What is the output of the parser from a compiler?

The output of an assembler is a part or all of a product. An assembler can work in a variety of manufacturing operations with the right training.


Features of good compiler in compiler design?

1. Compiler should generate accurate code corresponding to the source code provided 2.Compiler should perform better optimization that would contribute to the improvement of the Performance as well as in conservation of space. 3.Compiler should be bug-free by itself. 4.Output of the compiler should not take much time to run. 5. Compiler should be able to provide details of the error occurring such that they are sufficient to locate that error in the source program. 6. Compiler should generate machine code by using CPU registers efficiently. & should not use redundant LOAD or STORE statements for data.


How many types of compiler naming in list?

cross compiler . hybird compiler . post compiler. ideal compiler. intelligence compiler.


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 are the responsibilities of a compiler?

What are the responsibities of a compiler


How can you display the backslash character without the compiler interpreting it as a program command in c plus plus?

Double it: puts ("Here\\comes\\an\\example"); output: Here\comes\an\example