what is the difference between <stdio.h> and "stdio.h"
Answer Posted / 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 |
Post New Answer View All Answers
What are the different types of endless loops?
Function calling procedures? and their differences? Why should one go for Call by Reference?
What is the value of h?
What is meant by errors and debugging?
What is the meaning of && in c?
List a few unconditional control statement in c.
What is structure in c explain with example?
What language is c written?
Explain how do you override a defined macro?
Can we declare variable anywhere in c?
what is the structure pointer?
What is the difference between the local variable and global variable in c?
What is difference between arrays and pointers?
Define circular linked list.
What does the error message "DGROUP exceeds 64K" mean?