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


Please Help Members By Posting Answers For Below Questions

what is the significance of static storage class specifier?

1660


Explain data types & how many data types supported by c?

578


Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58

1115


What does the message "automatic aggregate intialization is an ansi feature" mean?

691


How can a program be made to print the line number where an error occurs?

647






can anyone suggest some site name..where i can get some good data structure puzzles???

1643


Why ca not I do something like this?

584


Once I have used freopen, how can I get the original stdout (or stdin) back?

624


What language is lisp written in?

614


What is scanf () in c?

659


An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?

665


What is huge pointer in c?

581


I just typed in this program, and it is acting strangely. Can you see anything wrong with it?

559


What are the different categories of functions in c?

641


Explain function?

663