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
Explain what is the benefit of using enum to declare a constant?
What is data structure in c and its types?
Sir i need notes for structure,functions,pointers in c language can you help me please
Which driver is a pure java driver
Explain how can you determine the size of an allocated portion of memory?
What is difference between && and & in c?
What should malloc() do?
What is d scanf?
Tell me with an example the self-referential structure?
What are the advantages of using macro in c language?
Why doesnt long int work?
What functions are in conio h?
How do we declare variables in c?
When a c file is executed there are many files that are automatically opened what are they files?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402