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

<stdio.h> is a header file which available in include
directory of the system. When we write #include<stdio.h>
preprocessor search for it in include directory directly
and not out of this directory. But when we write "stdio.h"
precessor start searching for this header file from current
directory and then in parent directories. So if we write
our own stdio.h in the current directory and include in
program as #include"stdio.h" then our header will be
included instead of system header.

Is This Answer Correct ?    313 Yes 16 No

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

Answer / vikesh

if angular brackets <> are used it indicates that the file
is to be found in one if the standard directories in the
system.
the quotes " " surrounding the file name indicates that an
alternative set of directive should be searched to find the
file in question

Is This Answer Correct ?    57 Yes 12 No

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

Answer / vishal

stdio.h> is a header file which available in include
directory of the system. When we write #include<stdio.h>
preprocessor search for it in include directory directly
and not out of this directory. But when we write "stdio.h"
precessor start searching for this header file from current
directory and then in parent directories. So if we write
our own stdio.h in the current directory and include in
program as #include"stdio.h" then our header will be
included instead of system header.

Is This Answer Correct ?    38 Yes 8 No

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

Answer / madhu

the <stdio.h> is located a particular Directory which is
having in Header Direcectory. But "Stdio.h" is can we
activate any where of other Directories.

Is This Answer Correct ?    72 Yes 45 No

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

Answer / bathakarai

The preprocessor <stdio.h> means that the directory is
predefined one.

but we specify "stdio.h" in their program that indicates
that the preprocessor is an userdefind one

Is This Answer Correct ?    26 Yes 3 No

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

Answer / shipra

#include<stdio.h> this command look for the file stdio.h
in the specified list of directories only

and

#include"stdio.h" would look the file stdio.h in the current
directory as well as the specified list of directories as
mentioned in the include search path

Is This Answer Correct ?    13 Yes 5 No

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

Answer / puneet

stdio.h> is a header file which available in include
directory of the system. When we write #include<stdio.h>
preprocessor search for it in include directory directly
and not out of this directory. But when we write "stdio.h"
precessor start searching for this header file from current
directory and then in parent directories. So if we write
our own stdio.h in the current directory and include in
program as #include"stdio.h" then our header will be
included instead of system header.

Is This Answer Correct ?    18 Yes 13 No

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

Answer / kiran shelke,aurangabad

When we write <stdio.h> that mean we can access this header
file from the include directory,but if this header file is
not present in this folder and its available in other
directory then it not access it.But when we write the
"stdio.h" then we can access this header file which
available in any other directory..
In short #include"stdio.h" is best option for ERROR free program

Is This Answer Correct ?    5 Yes 1 No

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

Answer / ranjan kumar sharma

<stdio.h is a header file which availabel in include directory of the system.
when we write #include<stdio.h> preprocessor search for it in include directory
directly and not out of this directory .But when we write "stdio.h" precessor
start searching for this header file from current directory and then in parent
directories. So if we write our own stdio.h in the current directory and include
in program as #include"stdio.h" then our header will be included instead of system
header.

Is This Answer Correct ?    1 Yes 0 No

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

Answer / subrata kumer paul.

<stdio.h> searches in standard C library locations, whereas
"stdio.h" searches in the current directory as well.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?

2 Answers   CTS,


which one low Priority in c? a)=,b)++,c)==,d)+

10 Answers  


What is size of union in c?

0 Answers  


Difference between data structure and data base.

7 Answers   CTS, Value Labs, Zoho,


Is anything faster than c?

0 Answers  






find the minimum of three values inputted by the user

3 Answers  


What is auto keyword in c?

0 Answers  


Give a fast way to multiply a number by 7

15 Answers   Accenture, Aricent, Microsoft,


two variables are added answer is stored on not for third variable how it is possible?

3 Answers  


Why use int main instead of void main?

0 Answers  


What would happen to X in this expression: X += 15; (assuming the value of X is 5)

0 Answers  


write a program in c language to print your bio-data on the screen by using functions.

6 Answers   College School Exams Tests, IBM,


Categories