Answer Posted / ananth kumar
First pre-compilation, macros are sunstituted. Then at the
time of compilation, source code is converted into object
files (in other words, decoding to machine language) and
the linker plays a major role in generating the output
executables to perform the desired function.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is unary operator?
Is null always defined as 0(zero)?
Process by which one bit pattern in to another by bit wise operation is?
What does & mean in scanf?
Define C in your own Language.
Is malloc memset faster than calloc?
Describe explain how arrays can be passed to a user defined function
What is the right type to use for boolean values in c? Is there a standard type?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What is operator precedence?
Why is it usually a bad idea to use gets()? Suggest a workaround.
How variables are declared in c?
How can I write functions that take a variable number of arguments?
Write a program to print ASCII code for a given digit.
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?