what is the difference between <stdio.h> and "stdio.h"
Answer Posted / 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 |
Post New Answer View All Answers
Describe explain how arrays can be passed to a user defined function
How can you increase the size of a dynamically allocated array?
Can true be a variable name in c?
What is a node in c?
What is oops c?
Is c a great language, or what?
Explain how many levels deep can include files be nested?
How can I read data from data files with particular formats?
How the c program is executed?
What is switch in c?
What does s c mean on snapchat?
What is the difference between call by value and call by reference in c?
What is the explanation for prototype function in c?
Why header file is used in c?
What are the restrictions of a modulus operator?