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 |
What are operators in c?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
What is pointer to pointer in c?
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
pgm in c to reverse string by word using array(god is love becomes love is god) (no additional array can used,space is only delimiter between words )
what is a static function
What is the difference between CV and Resume ?
What is the advantage of using #define to declare a constant?
0 Answers Agilent, ZS Associates,
how should functions be apportioned among source files?
how to return 1000 variables from functio9n in c?plz give me code also
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?