which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answer Posted / kalpana.y
#elif is not a preprocessor
| Is This Answer Correct ? | 1 Yes | 8 No |
Post New Answer View All Answers
Which header file should you include if you are to develop a function which can accept variable number of arguments?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
write a c program to find the sum of five entered numbers using an array named number
What is the explanation for cyclic nature of data types in c?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
How do you initialize pointer variables?
Why we use stdio h in c?
Multiply an Integer Number by 2 Without Using Multiplication Operator
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
The __________ attribute is used to announce variables based on definitions of columns in a table?
in iso what are the common technological language?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
what is recursion in C
If null and 0 are equivalent as null pointer constants, which should I use?