what is the difference between <stdio.h> and "stdio.h"
Answer Posted / ranjan kumar sharma
<stdio.h is a header file which availabel in include directory of the system.
when we write #include<stdio.h> preprocessor search for it in include directory
directly and not out of this directory .But when we write "stdio.h" precessor
start searching for this header file from current directory and then in parent
directories. So if we write our own stdio.h in the current directory and include
in program as #include"stdio.h" then our header will be included instead of system
header.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Is this program statement valid? INT = 10.50;
When is the “void” keyword used in a function?
What is dynamic memory allocation?
Why are all header files not declared in every c program?
What does sizeof int return?
What is typedef struct in c?
What is the use of volatile?
Explain what happens if you free a pointer twice?
Tell me with an example the self-referential structure?
What is #pragma statements?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
i got 75% in all semester am i eligible for your company
largest Of three Number using without if condition?
Why isnt there a numbered, multi-level break statement to break out