what is the difference between <stdio.h> and "stdio.h"

Answer Posted / puneet

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 ?    18 Yes 13 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is #include stdlib h?

612


How can I determine whether a machines byte order is big-endian or little-endian?

615


What is static volatile in c?

572


Tell me what is null pointer in c?

613


What is property type c?

599






Write a factorial program using C.

640


given post order,in order construct the corresponding binary tree

2321


Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

669


What are the features of c language?

617


What is exit() function?

559


What is c variable?

548


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

666


write an algorithm to display a square matrix.

2219


What is an arrays?

650


Are bit fields portable?

671