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


Please Help Members By Posting Answers For Below Questions

What is the scope of an external variable in c?

778


How does #define work?

847


What was noalias and what ever happened to it?

784


What is nested structure in c?

805


p*=(++q)++*--p when p=q=1 while(q<=6)

1496


How can I implement a delay, or time a users response, with sub-second resolution?

849


Why we use conio h in c?

900


What is the meaning of typedef struct in c?

809


What is #include cctype?

825


Is this program statement valid? INT = 10.50;

901


What is define directive?

865


What is echo in c programming?

747


Write a c program to demonstrate character and string constants?

1919


What is malloc calloc and realloc in c?

933


void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }

1493