what is compiler

Answers were Sorted based on User's Feedback



what is compiler..

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

what is compiler..

Answer / mahendra giri

compiler is translator,which translate source code to target

Is This Answer Correct ?    2 Yes 1 No

what is compiler..

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

what is compiler..

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

what is compiler..

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

what is compiler..

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

Post New Answer

More C Interview Questions

What are operators in c?

0 Answers  


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.

0 Answers  


Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.

11 Answers   Microsoft,


What is pointer to pointer in c?

0 Answers  


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); }

6 Answers   Microsoft,


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 )

2 Answers   Persistent,


what is a static function

10 Answers   Satyam,


What is the difference between CV and Resume ?

2 Answers  


What is the advantage of using #define to declare a constant?

0 Answers   Agilent, ZS Associates,


how should functions be apportioned among source files?

0 Answers  


how to return 1000 variables from functio9n in c?plz give me code also

6 Answers  


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?

2 Answers   nvidia,


Categories