what is difference between #include<stdio.h> and
#include"stdio.h"

Answers were Sorted based on User's Feedback



what is difference between #include<stdio.h> and #include"stdio.h"..

Answer / bharatgs7

<stdio.h> means its a in-built header file, "stdio.h" means
its an user-defined header file

Is This Answer Correct ?    11 Yes 3 No

what is difference between #include<stdio.h> and #include"stdio.h"..

Answer / somichoudhary

In #include<stdio.h>
The c compiler search the header files in Tc-Bin library

But in "stdio.h">
search the header files in local c: folder

Is This Answer Correct ?    7 Yes 1 No

what is difference between #include<stdio.h> and #include"stdio.h"..

Answer / ep

#include <stdio.h>
Will look for the header file in the standard include paths.

#include "stdio.h"
Will look for the file first in the current directory, then
it wil look for it in the standard include paths, if not found.

Is This Answer Correct ?    2 Yes 0 No

what is difference between #include<stdio.h> and #include"stdio.h"..

Answer / jeke kumar gochhayat

in #include<stdio.h> , stdio.h is a predefined header file
in the include directory.
but in #include"stdio.h" is a userdefined header files
but functions are same

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

If I have a char * variable pointing to the name of a function ..

0 Answers  


What are lookup tables in c?

0 Answers  


2. What does static variable mean?

2 Answers  


Can you please explain the difference between malloc() and calloc() function?

0 Answers  


Explain low-order bytes.

0 Answers  






what are the languages used in c#?

3 Answers   Infosys,


What is extern c used for?

0 Answers  


what type of questions arrive in interview over c programming?

0 Answers  


How can you pass an array to a function by value?

0 Answers  


Why is malloc used?

1 Answers  


different between overloading and overriding

3 Answers  


main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }

11 Answers   CISOC, CitiGroup, College School Exams Tests,


Categories