what is the difference between <stdio.h> and "stdio.h"
Answer Posted / 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 |
Post New Answer View All Answers
Write a program to swap two numbers without using third variable in c?
What is c mainly used for?
What is extern c used for?
Is there any data type in c with variable size?
What is the advantage of an array over individual variables?
What are the two forms of #include directive?
What is .obj file in c?
How can I manipulate individual bits?
hi, which software companys will take,if d candidate's % is jst 55%?
what are the facialities provided by you after the selection of the student.
Explain what is the difference between #include and #include 'file' ?
write a proram to reverse the string using switch case?
Here is a neat trick for checking whether two strings are equal
What happens if you free a pointer twice?
Without Computer networks, Computers will be half the use. Comment.