which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answer Posted / debasish mishra
#pragma is not a preprocessor directive
| Is This Answer Correct ? | 2 Yes | 9 No |
Post New Answer View All Answers
What is the use of f in c?
Why we use void main in c?
Explain the bubble sort algorithm.
What is the purpose of type declarations?
When can a far pointer be used?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
Can you think of a logic behind the game minesweeper.
What is the correct declaration of main?
How is a macro different from a function?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Create a simple code fragment that will swap the values of two variables num1 and num2.
How can I read and write comma-delimited text?
all c language question
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Where we use clrscr in c?