what is the difference between #include<> and #include”…”?

Answer Posted / hrpynux@gmail.com

For #include "" a compiler normally searches the folder of the file which contains that include and then the other folders. For #include <> the compiler does not search the current file's folder.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the functions to open and close the file in c language?

595


What is sizeof in c?

571


any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above

659


What is the equivalent code of the following statement in WHILE LOOP format?

769


what is the role you expect in software industry?

1658






Explain what is the best way to comment out a section of code that contains comments?

721


What is call by reference in functions?

567


Can we assign string to char pointer?

588


program to convert a integer to string in c language'

1984


Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.

2652


What are the applications of c language?

624


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

920


int far *near * p; means

3121


Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me

1466


What does typeof return in c?

638