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 |
Why many objects can working together? How objects working togetherM I want to see example code.
Please send ford technologies placement paper 2 my mail id
How do you answer polymorphism?
What is Inheritance, Multiple Inheritance, Shared and Repeatable Inheritance?
what is code for call by value and call by reference?
What are the 4 pillars of oop?
to find out the minimum of two integer number of two different classes using friend function
c++ provides classes...and classes do what we want but why then strcut are used...if we say data hiding... it is also provided by c++ in structs then why to prefer clasess
Get me an image implementation program.
what is the new version of c++
1 Answers Ignou, Pramata, Satyam,
What is polymorphism ? Explain with examples
What is abstraction in oops with example?