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 the difference between #include<stdio.h> and
#include"stdio.h" ?

Answers were Sorted based on User's Feedback



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

Answer / shahab

# include<stdio.h>--- It searches one directory i.e
specified list of directory.
# include"stdio.h"---- It searches two i.e specified list
of directory & current directory.

Is This Answer Correct ?    66 Yes 10 No

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

Answer / mytri

#include<stdio.h>--Search from current directory
#include"stdio.h"--Search from list of directories that are
included in path

Is This Answer Correct ?    61 Yes 28 No

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

Answer / 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

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

Answer / sreekanth

#include "stdio.h"
The compiler will search for a particular stdio.h in the
current working directory only

where as <stdio.h> the complier looks into default dir.
which is in most cases /include/lib or you can define this
directory by your own.

Is This Answer Correct ?    30 Yes 14 No

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

Answer / sanjay chandra

#include<stdio.h> /* stdio.h is searched in c:\TCP\INCLUDE
folder. If not found gives compilation error

#include "stdio.h" first searches for stdio.h in
c:\TCP\BIN(current diretory) . If not found searches
c:\tcp\include\ for stdio.h file

Is This Answer Correct ?    21 Yes 7 No

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

Answer / rakesh simar

include<stdio.h> is a part of hedrfile and & it means standard input(scanf) &output(printf)

Is This Answer Correct ?    3 Yes 14 No

Post New Answer

More C Interview Questions

Explain 'bit masking'?

0 Answers   EXL,


Can you assign a different address to an array tag?

0 Answers  


What is a void pointer? When is a void pointer used?

0 Answers   Aspire, Infogain,


please can some one guide me, to the answer Write a C program to enter 15 numbers as an input from the keyboard and program will find and print odd numbers and their average. i have studied while and do while loop for loop if and else if switch

2 Answers  


List the different types of c tokens?

0 Answers  


Where are local variables stored in c?

0 Answers  


what is void pointer?

2 Answers  


What is the maximum no. of arguments that can be given in a command line in C.?

0 Answers   HCL,


can we store values and addresses in the same array? explain

3 Answers   TCS,


What type of function is main ()?

0 Answers  


Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?

6 Answers  


What is graph in c?

0 Answers  


Categories