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 |
What is external and internal variables What is dynamic memory allocation what is storage classes in C
What is the difference between File pointer and Internal Charecter Pointer?
Three major criteria of scheduling.
write a program to find the largest and second largest integer from an array
What is a segmentation fault?
main() { int i; printf("%d",i^i); }
How many identifiers are there in c?
What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
difference between the array and linked list general difference related to memory
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
What is a char c?
How do you override a defined macro?