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
What is typedef?
Define Array of pointers.
What is the difference between strcpy() and memcpy() function in c programming?
Where are some collections of useful code fragments and examples?
What are the different types of linkage exist in c?
Are global variables static in c?
Is it better to use a macro or a function?
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
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); }
How many levels of pointers have?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Explain what is dynamic data structure?
For what purpose null pointer used?
What is the difference between declaring a variable and defining a variable?