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 |
any "C" function by default returns an a) int value b) float value c) char value d) a & b
how to find the given number is prime or not?
Find greatest of two numbers using macro
How can I generate floating-point random numbers?
a simple program in c language
How can I read a directory in a C program?
2 Answers Bright Outdoor, Wipro,
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
write a program which will count occurance of a day between two dates.
What are variables and it what way is it different from constants?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
int x=5; printf("%d%d%d",x,x<<2,x>>2);
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;