what is the difference between #include<stdio.h> and
#include "stdio.h" ?
Answer Posted / jasbir singh
When we use #include<stdio.h>, the compiler will look at the
compiler's directory for stdio.h file and then include it.
When we use #include"stdio.h", it will look in the source
code's directory for the stdio.h file.
"" are basically used when the header file is placed with
the source code(means .c or .cpp files), not in the C
Compiler's 'include' directory. It is basically used to
include our own self generated header files into our program.
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
What are the advantages of using linked list for tree construction?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
What is the use of ?
What is nested structure?
What are compound statements?
What is pre-emptive data structure and explain it with example?
can any one provide me the notes of data structure for ignou cs-62 paper
Tell us two differences between new () and malloc ()?
Differentiate fundamental data types and derived data types in C.
Where register variables are stored in c?
What is void main () in c?
I came across some code that puts a (void) cast before each call to printf. Why?
What is a string?
Can I initialize unions?
What is "Hungarian Notation"?