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 / tutgfjyhg

What is the difference between #include “stdio.h” and #include <stdio.h> in C?

Is This Answer Correct ?    0 Yes 0 No

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

Answer / arun.k

#include<stdio.h> does not search the source directory,if
we write #include"stdio.h" it will search the source path
first end include that path

Is This Answer Correct ?    8 Yes 9 No

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

Answer / kuldeep

hello in simple way-

when we are using #include<stdio.h> in our program here no
need for search the header files in directory. but when we
are using the #include"stdio.h" in our program firstly
header files search in current directory/parent directory.

Is This Answer Correct ?    6 Yes 7 No

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

Answer / cpmt

<stdio.h> searches in the current directory."stdio.h"
searches in the both source and current directory.

Is This Answer Correct ?    6 Yes 10 No

Post New Answer

More C Interview Questions

Difference between fopen() and open()?

3 Answers   Aricent,


write a c program to print "Welcome" without using semicolon in the whole program ??

15 Answers   Infosys, TCS,


write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34

0 Answers  


what are the static variables

8 Answers   HCL, iFlex, TCS, Wipro,


Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain

2 Answers  






print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1

1 Answers   Winit,


How to get string length of given string in c?

0 Answers  


Are pointers integer?

0 Answers  


which type of aspect you want from the student.

0 Answers   IBM, TCS,


write a c program in such a way that if we enter the today date the output should be next day's date.

0 Answers  


what is the code to display color fonts in the output?

1 Answers  


What is extern storage class in c?

0 Answers  


Categories