what is compiler

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you override a defined macro?

923


Why isn't it being handled properly?

837


When should a type cast be used?

771


What are the back slash character constants or escape sequence charactersavailable in c?

930


What is string constants?

889


Explain enumerated types in c language?

794


"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks

889


How do I round numbers?

784


What is the meaning of c in c language?

818


Is c++ based on c?

843


This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory

1000


program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)

1862


Write a program to identify if a given binary tree is balanced or not.

915


an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational

1080


What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }

941