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
What are the advantages of c preprocessor?
What is the meaning of && in c?
Why are all header files not declared in every c program?
How can I get the current date or time of day in a c program?
How can I change their mode to binary?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
Is register a keyword in c?
Explain a pre-processor and its advantages.
program to convert a integer to string in c language'
Why is #define used?
Explain what is the difference between a free-standing and a hosted environment?
What would be an example of a structure analogous to structure c?
What is the difference between arrays and pointers?
Is boolean a datatype in c?