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
List some of the static data structures in C?
Explain the priority queues?
What does %c mean in c?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Tell us bitwise shift operators?
What is a nested loop?
What is a const pointer in c?
Explain 'bus error'?
Which are low level languages?
Why is a semicolon (;) put at the end of every program statement?
Which one would you prefer - a macro or a function?
What's the best way of making my program efficient?
Why void is used in c?
What is the use of getchar functions?
What are extern variables in c?