which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answer Posted / c.sureshkumar
elif is not a preprocessor
| Is This Answer Correct ? | 5 Yes | 12 No |
Post New Answer View All Answers
What is wrong with this program statement? void = 10;
What is the general form of #line preprocessor?
What is typedef struct in c?
What are operators in c?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
What Is The Difference Between Null And Void Pointer?
What is the right way to use errno?
What are extern variables in c?
What is keyword with example?
What are loops in c?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What does nil mean in c?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
In C language what is a 'dangling pointer'?