what is compiler
Answers were Sorted based on User's Feedback
Answer / fazlur rahaman naik
the compiler has various definations
one of them is as follows.
A program that translates a high level symbolic language to
a low level machine language
| Is This Answer Correct ? | 4 Yes | 0 No |
compiler is translator,which translate source code to target
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / guest
A compiler is a software program which is used to compile
the program written in computer language to the normal
language and return the o/p to the user in normal form.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / ramesh
A Compiler that translates the sources to binary code
language
(or)
A compiler that converts the high level language to low
level language.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / e-mail
A compiler is used to convert the high-level languages into
machine language. it checks the errors in programs like
compile errors, linkage errors etc...
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / mrs.ahmer
A compiler is a computer program (or set of programs) that
transforms source code written in a programming language
(the source language) into another computer language (the
target language, often having a binary form known as object
code).
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dhanshri chabukswar
a compiler act as a translator between you and the computer
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What is dangling pointer in c?
How are portions of a program disabled in demo versions?
How can type-insensitive macros be created?
what is a NULL pointer?
What are qualifiers and modifiers c?
5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
What are different storage class specifiers in c?
Are the expressions * ptr ++ and ++ * ptr same?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
what type of errors are checked during compilation
What is volatile in c language?