what is the difference between <stdio.h> and "stdio.h"
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
What is a struct c#?
Explain pointer. What are function pointers in C?
WHAT IS FLOAT?
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
What are the keywords in c?
what is the size of an integer variable?
what is C?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
program for validity of triangle from 3 side
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
write a program to swap two numbers without using temporary variable?
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,