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
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
how can f be used for both float and double arguments in printf? Are not they different types?
ATM machine and railway reservation class/object diagram
Why dont c comments nest?
What are linker error?
what is the difference between 123 and 0123 in c?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What is the main difference between calloc () and malloc ()?
What is identifier in c?
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
Are there namespaces in c?
What are the advantages of using macro in c language?
can we change the default calling convention in c if yes than how.........?
Explain about the constants which help in debugging?
Which function in C can be used to append a string to another string?