what is the difference between <stdio.h> and "stdio.h"
Answer Posted / 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 |
Post New Answer View All Answers
Write programs for String Reversal & Palindrome check
Is struct oop?
What is the best way to store flag values in a program?
Explain what is a const pointer?
How can I automatically locate a programs configuration files in the same directory as the executable?
please explain every phase in the "SDLC" in the dotnet.
What do you mean by recursion in c?
What is actual argument?
What is wrong with this code?
Explain do array subscripts always start with zero?
What is sizeof int in c?
How do you view the path?
All technical questions
What is the 'named constructor idiom'?
How do I use strcmp?