Answer Posted / vl
The pre processor directives are the code line which are
replaced by the actuall value (header file and Macro
replacements) before compiler start the syntax checks.
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
Explain how do you view the path?
how we can make 3d venturing graphics on outer interface
Write a Program to find whether the given number or string is palindrome.
What is indirection in c?
In c programming language, how many parameters can be passed to a function ?
What is c basic?
What is the heap in c?
How does #define work?
What does void main () mean?
What is the role of this pointer?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
Explain the concept and use of type void.
What do you mean by scope of a variable in c?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);