what is the difference between <stdio.h>and "stdio.h"?
Answers were Sorted based on User's Feedback
Answer / p srinivas rao
In the first case ie. <stdio.h>,the compiler will search
for the presence of the file named stdio.h in the include
directory as well as in the current directory.
Whereas in the second case("stdio.h"),compiler will search
only in the current directory.
| Is This Answer Correct ? | 13 Yes | 1 No |
Answer / ramakrishna yechuri
In the first case ie. <stdio.h>,the compiler will search
for the presence of the file named stdio.h in the
current directory.
Whereas in the second case("stdio.h"),compiler will search
in all the directories.
| Is This Answer Correct ? | 5 Yes | 1 No |
<stdio.h> is the System Include so while compilation it
will be searched in the system include folder and as well
as the current folder. "stdio.h" is the user include so,
will be searched in the current directory only.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / pramod
<stdio.h> -----search in standard path defined in PATH variable
"stdio.h" -----search in current directory then in standard
PATH
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / amit
<stdio.h> means it will search in current directories
"stdio.h" means it will search in entire drive. ie current
drive.
| Is This Answer Correct ? | 0 Yes | 2 No |
What is friend function?
what is the virtual function overhead, and what is it used for ? i hope i can get and appropriate answers, thanks a lot....
why to use template classes in c++?
what is difference between objects and function
Why we use classes in oop?
I have One image (means a group photo ) how to split the faces only from the image?............ please send the answer nagadurgaraju@gmail.com thanks in advace...
What is multilevel inheritance?
What is difference between oop and pop?
What is oop in simple words?
What is the difference between static polymorphism and dynamic polymorphism?
what is oops
Why is there no multiple inheritance?