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
What is a pointer in c plus plus?
What is difference between structure and union?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
What is a void pointer? When is a void pointer used?
How do I determine whether a character is numeric, alphabetic, and so on?
All technical questions
why do some people write if(0 == x) instead of if(x == 0)?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What are the scope of static variables?
How will you find a duplicate number in a array without negating the nos ?
What are the features of c language?
What are the disadvantages of external storage class?
Write a c program to demonstrate character and string constants?
What are the 5 data types?