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

What are different oops concepts?

0 Answers  


1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321

2 Answers  


i got a backdoor offer in process global,Bangalore..Can i work with it?

0 Answers  


Where is pseudocode used?

0 Answers  


what is the difference between ERROR and EXCEPTION?

14 Answers   NIIT, nvidia,






Why is abstraction used?

0 Answers  


1. Wrie a function which returns the most frequent number in a list of integers. Handle the case of more than one number which meets this criterion. public static int[] GetFrequency(int[] list)

1 Answers   Nagarro,


Should you protect the global data in threads? Why or why not?

2 Answers   IBM,


What are the 3 principles of oop?

0 Answers  


What is the output of the following code: int v() { int m=0; return m++; } int main() { cout<<v(); } 1) 1 2) 0 3) Code cannot compile

4 Answers  


What are the 4 main oop principles?

0 Answers  


What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?

0 Answers   IBM,


Categories