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 assert and when would I use it?
What are the standard predefined macros?
What is getch c?
Explain how do you declare an array that will hold more than 64kb of data?
What are the different types of pointers used in c language?
How do I determine whether a character is numeric, alphabetic, and so on?
What are the advantages of Macro over function?
What is the scope of global variable in c?
Write a program to show the change in position of a cursor using c
Are c and c++ the same?
Between macros and functions,which is better to use and why?
Is Exception handling possible in c language?
Why pointers are used?
How do we make a global variable accessible across files? Explain the extern keyword?
Can stdout be forced to print somewhere other than the screen?