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 a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
Explain how do you list a file’s date and time?
Which type of language is c?
What is this pointer in c plus plus?
Is a pointer a kind of array?
Is calloc better than malloc?
Are c and c++ the same?
What is modifier & how many types of modifiers available in c?
What is the use of putchar function?
What are the types of functions in c?
What are the 5 types of organizational structures?
What type of function is main ()?
How can you find out how much memory is available?
What is the difference between fread and fwrite function?
How to Throw some light on the splay trees?