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
How do you override a defined macro?
Why isn't it being handled properly?
When should a type cast be used?
What are the back slash character constants or escape sequence charactersavailable in c?
What is string constants?
Explain enumerated types in c language?
"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
How do I round numbers?
What is the meaning of c in c language?
Is c++ based on c?
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
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Write a program to identify if a given binary tree is balanced or not.
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
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'); }