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
Why doesnt the call scanf work?
What does %c mean in c?
What is New modifiers?
Is c a great language, or what?
What is c programming structure?
Which of these functions is safer to use : fgets(), gets()? Why?
What is #define?
Is c still relevant?
What is the use of a semicolon (;) at the end of every program statement?
Explain how do you print only part of a string?
How do you list a file’s date and time?
What is the sizeof () operator?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What functions are used in dynamic memory allocation in c?
How can I delete a file?