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

C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

6 Answers   TCS, Wipro,


How can you avoid including a header more than once?

0 Answers  


output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }

2 Answers   Elysium,


what is the different between if-else and switch statment (other than syntax)

26 Answers   CTS, Oracle, Scorpos,


We can draw a box in cprogram by using only one printf();& without using graphic.h header file?

4 Answers   NIIT,






write a program to find out prime number using sieve case?

0 Answers   HCL,


any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above

0 Answers  


what is the difference between getch() and getche()?

7 Answers   Infosys,


Why is it important to memset a variable, immediately after allocating memory to it ?

0 Answers  


program to locate string with in a string with using strstr function

2 Answers   Huawei, Shreyas,


How can I read a directory in a c program?

1 Answers   CSC,


#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }

6 Answers   ME,


Categories