what is the difference between <stdio.h> and "stdio.h"
Answers were Sorted based on User's Feedback
Answer / tutgfjyhg
What is the difference between #include “stdio.h” and #include <stdio.h> in C?
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / arun.k
#include<stdio.h> does not search the source directory,if
we write #include"stdio.h" it will search the source path
first end include that path
| Is This Answer Correct ? | 8 Yes | 9 No |
Answer / kuldeep
hello in simple way-
when we are using #include<stdio.h> in our program here no
need for search the header files in directory. but when we
are using the #include"stdio.h" in our program firstly
header files search in current directory/parent directory.
| Is This Answer Correct ? | 6 Yes | 7 No |
Answer / cpmt
<stdio.h> searches in the current directory."stdio.h"
searches in the both source and current directory.
| Is This Answer Correct ? | 6 Yes | 10 No |
Why do u use # before include in a C Progam?
What is a stream water?
What is #define?
How to Throw some light on the splay trees?
WHAT IS HIGH LEVEL LANGUAGE?
Hi, main() { } Is a user defined function or Built in Functionn
write a program to delete an item from a particular location of an linear array?
implement NAND gate logic in C code without using any bitwise operatior.
How can you increase the size of a dynamically allocated array?
write a program to remove duplicate from an ordered char array? in c
write a program to copy a string without using a string?
What are the header files used in c language?