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
What is merge sort in c?
What is break statement?
What are global variables?
Can a file other than a .h file be included with #include?
What is getch?
Differentiate Source Codes from Object Codes
What is a built-in function in C?
Apart from dennis ritchie who the other person who contributed in design of c language.
number of times a digit is present in a number
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?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What is multidimensional arrays
Why clrscr is used after variable declaration?
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
What is an lvalue?