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 |
Explain how do you list a file’s date and time?
What library is sizeof in c?
When should a type cast be used?
Why do we need a structure?
How to reverse a string using a recursive function, with swapping?
What is the need of structure in c?
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
why do some people write if(0 == x) instead of if(x == 0)?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
code for selection sort?
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”