which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answer Posted / thoufik
#if is not the preprocessor.......
Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
What is the scope of an external variable in c?
How does #define work?
What was noalias and what ever happened to it?
What is nested structure in c?
p*=(++q)++*--p when p=q=1 while(q<=6)
How can I implement a delay, or time a users response, with sub-second resolution?
Why we use conio h in c?
What is the meaning of typedef struct in c?
What is #include cctype?
Is this program statement valid? INT = 10.50;
What is define directive?
What is echo in c programming?
Write a c program to demonstrate character and string constants?
What is malloc calloc and realloc in c?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }