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

Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above

5 Answers   Accenture, TCS,


what is a NULL Pointer? Whether it is same as an uninitialized pointer?

0 Answers   TISL,


why do some people write if(0 == x) instead of if(x == 0)?

0 Answers  


What is the use of extern in c?

0 Answers  


Explain how can I write functions that take a variable number of arguments?

0 Answers  






What is static and volatile in c?

0 Answers  


what is a function method?give example?

0 Answers  


Difference between fopen() and open()?

3 Answers   Aricent,


What is memmove?

1 Answers   Oracle,


Explain how do you list a file’s date and time?

0 Answers  


how can we Declare a variable in c without defining it.

1 Answers   TCS,


there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?

1 Answers  


Categories