which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma

Answer Posted / yashwanth

#pragma is not a preprosessor directive, because pragma is
use to suppress errors,, but errors are exposed only after
compilation,, which is defenitly after preprosessing,, so
pragma is not a preprosessor diretive

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what are header files and explain what are its uses in c programming?

634


What is the use of volatile?

618


What do you mean by a sequential access file?

637


what is different between auto and local static? why should we use local static?

650


What is selection sort in c?

615






Explain what is a stream?

617


What is the difference between struct and typedef struct in c?

669


What is the use of gets and puts?

612


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

1872


why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above

620


which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above

1145


Explain enumerated types.

609


What is a pointer on a pointer in c programming language?

628


What are the different types of data structures in c?

614


What is a protocol in c?

569