which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answer Posted / lnk
before asnwering please do understand what are
preprocessive directive ....
A preprocessive derectives are used because it would be
easy to change and easy to compile in different execution
environments. Directives in the source file tell the
preprocessor to perform specific actions
# if is #if: This directive executes its associated block
of code if and only if the condition specified along with
this directive is evaluated to true.
#elif: Else-if conditions can be specified using #elif
directive. Block of code associated with #elif directive
will be triggered if the condition specified in this
directive is evaluated to true and the condition specified
by its related if statement is evaluated to false. #elif
block is optional.
#undef: This directive does the reverse process of #define
directive. #undef will reset its associated identifier to
Boolean value “false”.
#pragma: This directive controls the display of warning
message specified using #warning directive. I
so all of them are preprocessive directives ...
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Is it possible to have a function as a parameter in another function?
Tell me what are bitwise shift operators?
How many parameters should a function have?
Differentiate between declaring a variable and defining a variable?
Is c compiled or interpreted?
Why does not c have an exponentiation operator?
Write a program on swapping (100, 50)
Write a program to find factorial of a number using recursive function.
What is unsigned int in c?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
How do I copy files?
Who developed c language?
What are the advantages of c preprocessor?
Why c language?
What is #line used for?