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 |
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
What does typeof return in c?
Write a C Programm.. we press 'a' , it shows the albhabetical number is 1, if we press 'g' it shows the answer 7.. any can help me
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
what is ans for this scanf(%%d",c);
What are the types of type qualifiers in c?
What do you understand by normalization of pointers?
What do you mean by scope of a variable in c?
What is the advantage of a random access file?
Explain function pointer with exapmles.
Program to find larger of the two numbers without using if-else,while,for,switch
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.