Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

which is conditional construct a) if statement b) switch statement c) while/for d) goto

0 Answers  


Write a program to find whether the given number is prime or not?

6 Answers  


How to establish connection with oracle database software from c language?

0 Answers  


How can I return multiple values from a function?

6 Answers  


Program to trim a given character from a string.

5 Answers   NetApp,


What are extern variables in c?

0 Answers  


Explain how can a program be made to print the name of a source file where an error occurs?

0 Answers  


what do the 'c' and 'v' in argc and argv stand for?

0 Answers   TISL,


write a program in c language to print your bio-data on the screen by using functions.

6 Answers   College School Exams Tests, IBM,


What are type modifiers in c?

0 Answers  


What is the use of linkage in c language?

0 Answers  


How can I prevent another program from modifying part of a file that I am modifying?

0 Answers  


Categories