what is the difference between <stdio.h>and "stdio.h"?

Answers were Sorted based on User's Feedback



what is the difference between <stdio.h>and "stdio.h"?..

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

what is the difference between <stdio.h>and "stdio.h"?..

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

what is the difference between <stdio.h>and "stdio.h"?..

Answer / krishnamurty das

<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

what is the difference between <stdio.h>and "stdio.h"?..

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

what is the difference between <stdio.h>and "stdio.h"?..

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

Post New Answer

More OOPS Interview Questions

given a set based questions and 5 questions based on it next data sufficiciency questions 2 and 2/3 english sentence completion with options very easy and 2 synononmys paragraph with 10 questions 10 minutes replace =,-,*,% with -,%,+,* type questions 5 3 questions lik following itssickhere itssickthere itssickhere istsickhere which is nt alike the others very easy

0 Answers   DELL,


How do you define social class?

0 Answers  


What are the OOPS concepts?

106 Answers   A1 Technology, Bajaj, CTS, EDS, HP, Infosys, Intel, Microsoft, MNC, Persistent, PlanetSoft, ProConstructor, TCS, Virtusa, Wipro, YSoft Solutions,


write a program in c++ to overload the function add (s1,s2) where s1 and s2 are integers and floating point values.

4 Answers  


can inline function declare in private part of class?

1 Answers  


Give two or more real cenario of virtual function and vertual object

0 Answers   TCS,


Can we call a base class method without creating instance?

6 Answers  


What are the 5 oop principles?

0 Answers  


What do you mean by overloading?

0 Answers  


Describe what an Interface is and how it?s different from a Class.

7 Answers   Spinsys,


#include <iostream> using namespace std; int main() { int a = 3; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][2]; }

1 Answers  


What are the benefits of interface?

0 Answers  


Categories