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 difference between #include<> and #include”…”?

Answer Posted / kush joshi

#include<>, include the predefined header files, but
#include"...." include the userdefined header files in c
program. in this within "...." we mention the path where
the users header file is stored.

Is This Answer Correct ?    7 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is typedef?

1398


Define Array of pointers.

1091


What is the difference between strcpy() and memcpy() function in c programming?

1071


Where are some collections of useful code fragments and examples?

1146


What are the different types of linkage exist in c?

1016


Are global variables static in c?

1148


Is it better to use a macro or a function?

1146


why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above

1141


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

1419


How many levels of pointers have?

1034


Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?

2562


Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

1204


Explain what is dynamic data structure?

1148


For what purpose null pointer used?

1058


What is the difference between declaring a variable and defining a variable?

1256