which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answers were Sorted based on User's Feedback
Answer / debasish mishra
#pragma is not a preprocessor directive
| Is This Answer Correct ? | 2 Yes | 9 No |
Are the outer parentheses in return statements really optional?
what is volatile in c language?
9 Answers Cap Gemini, HCL, Honeywell, TCS, Tech Mahindra,
What are the advantages of using Unions?
what is the other ways to find a logic to print whether a number is an even or odd wit out using % symbol??????? i know three different ways to print it. so i need any other different logic>>>>>
How do you define CONSTANT in C?
In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
What is break in c?
What is the difference between malloc calloc and realloc in c?
what will be maximum number of comparisons when number of elements are given?
What is typedef?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
What would be an example of a structure analogous to structure c?