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 is the meaning When we write "#include" what is # and
what does include does there???

Answer Posted / j.md riyasudeen

# include "file name" that represents its already inbuilt in
the programming coding by developer.if the developer used
the any other symbols like(*include,@include) this is header
file we should use in c programs

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain how can you tell whether a program was compiled using c versus c++?

1071


What are control structures? What are the different types?

1058


What are the applications of c language?

1035


Explain the process of converting a Tree into a Binary Tree.

2633


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

1689


How do you convert strings to numbers in C?

1190


What are the rules for identifiers in c?

1041


Can you return null in c?

1118


What is a list in c?

995


What are the key features in c programming language?

1026


How many levels of pointers can you have?

1150


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(); }

2282


Can a variable be both static and volatile in c?

990


What is non linear data structure in c?

986


Where local variables are stored in c?

972