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 |
c++ program to swap the objects of two different classes
Out of 4 concepts, which 3 C++ Follow?
swapping program does not use third variable
just right the logic of it 1--> If few people are electing then every time ur candidate should win 2--> arrange books in box, if box carry weight == books weight then take another box..... find the no of box required.
sir plz send me a set of questions that been frequently held in written examination during campus selection.
What is multidimensional array?
Why is there no multiple inheritance?
Precompilation ?
Why we are use # in begning of programme of c++.
What are the 5 oop principles?
if u write a class do u write Assignment operator and copy constructor
I hv a same function name,arguments in both base class and dervied class, but the return type is different. Can we call this as a function overloading? Explain?