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


Please Help Members By Posting Answers For Below Questions

What is merge sort in c?

852


What is break statement?

876


What are global variables?

889


Can a file other than a .h file be included with #include?

894


What is getch?

855


Differentiate Source Codes from Object Codes

1182


What is a built-in function in C?

1150


Apart from dennis ritchie who the other person who contributed in design of c language.

1109


number of times a digit is present in a number

1804


If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?

1026


a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion

2583


What is multidimensional arrays

882


Why clrscr is used after variable declaration?

1336


The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none

991


What is an lvalue?

854