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 is the meaning of && in c?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
Subtract Two Number Without Using Subtraction Operator
How can I avoid the abort, retry, fail messages?
How can I recover the file name given an open stream?
What is the purpose of sprintf() function?
Write a program to find factorial of a number using recursive function.
What is a structural principle?
Can a file other than a .h file be included with #include?
How to write a multi-statement macro?
How many data structures are there in c?
define string ?
What is c method?
Explain two-dimensional array.
What is the heap in c?