Answer Posted / vatsava
This is a preprocessor directive & causes one file to be
included into another. Whenever we #include a file it
causes the entire contents of the file to be inserted into
the source code
| Is This Answer Correct ? | 20 Yes | 0 No |
Post New Answer View All Answers
Which is best book for data structures in c?
Is null a keyword in c?
How can I delete a file?
What is ## preprocessor operator in c?
Can a function argument have default value?
What is the function of volatile in c language?
Why can’t we compare structures?
What is the significance of scope resolution operator?
What is the best way of making my program efficient?
What are the back slash character constants or escape sequence charactersavailable in c?
Explain the advantages and disadvantages of macros.
Array is an lvalue or not?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
ATM machine and railway reservation class/object diagram
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol