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 |
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.
What is that continue statement??
What does %d do?
How do you search data in a data file using random access method?
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.
main() { int a; a=++100; printf("%d",a); getch(); }
What are bit fields? What is their use?
diff. between *p and **p
How to compare array with pointer in c?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
what are far pointers?