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
How can my program discover the complete pathname to the executable from which it was invoked?
Is Exception handling possible in c language?
What is selection sort in c?
What is a macro, and explain how do you use it?
What is the use of getchar functions?
Why is c not oop?
What is c variable?
When c language was developed?
FILE PROGRAMMING
i have a written test for microland please give me test pattern
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
Tell me can the size of an array be declared at runtime?
What is sizeof int in c?
Explain the array representation of a binary tree in C.
How can I change their mode to binary?