what is the difference between <stdio.h> and "stdio.h"
Answer Posted / shipra
#include<stdio.h> this command look for the file stdio.h
in the specified list of directories only
and
#include"stdio.h" would look the file stdio.h in the current
directory as well as the specified list of directories as
mentioned in the include search path
| Is This Answer Correct ? | 13 Yes | 5 No |
Post New Answer View All Answers
What does return 1 means in c?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
What are variables and it what way is it different from constants?
Which is best book for data structures in c?
What are linker error?
What is the most efficient way to store flag values?
What is the purpose of type declarations?
Does c have enums?
Explain the difference between malloc() and calloc() function?
What is pointer to pointer in c?
Define C in your own Language.
What is the difference between null pointer and wild pointer?
What are data types in c language?
Differentiate between calloc and malloc.
What is int main () in c?