what is the difference between #include<stdio.h> and
#include"stdio.h" ?
Answer Posted / mini bangar
when we write #include<stdio.h> preprocessor search for it in include directory directly.but when we write "stdio.h" precessor start searching for this header file from current directoryand then in parent directories.
| Is This Answer Correct ? | 25 Yes | 5 No |
Post New Answer View All Answers
Tell me can the size of an array be declared at runtime?
Explain how can I make sure that my program is the only one accessing a file?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
How can I make it pause before closing the program output window?
What is a good data structure to use for storing lines of text?
Why main is not a keyword in c?
When should the const modifier be used?
please send me the code for multiplying sparse matrix using c
What are global variables and how do you declare them?
Can you explain the four storage classes in C?
Can a variable be both constant and volatile?
Explain About fork()?
int i=10; printf("%d %d %d", i, i=20, i);
What is the data segment that is followed by c?