Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what does ‘#include’ mean?

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


Please Help Members By Posting Answers For Below Questions

How can I manipulate individual bits?

1097


#include int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

1771


Simplify the program segment if X = B then C ← true else C ← false

3064


What is the size of array float a(10)?

1187


Is fortran still used today?

1148


What are different types of operators?

1095


Is boolean a datatype in c?

1127


Explain enumerated types.

1085


What are static variables in c?

1128


What is atoi and atof in c?

1132


What do you mean by keywords in c?

1196


Write a code to generate a series where the next element is the sum of last k terms.

1287


c language interview questions & answer

2013


What is difference between stdio h and conio h?

1436


How can I open files mentioned on the command line, and parse option flags?

1104