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

Why can’t constant values be used to define an array’s initial size?

0 Answers  


What is a null pointer in c?

0 Answers  


a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none

0 Answers  


Explain how do you determine whether to use a stream function or a low-level function?

0 Answers  


What is spark map function?

0 Answers  


how can i calculate mean,median,mode by using c program

1 Answers   HCL,


How the processor registers can be used in C ?

7 Answers   HP,


What is gets() function?

0 Answers  


How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?

0 Answers  


how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y

2 Answers   TCS, Tech Synergy,


Write a c program to enter a string of paragraph and replacing a particular word which is repeated in the paragraph by another word?

2 Answers   ME, Synfusion, Wipro,


Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.

0 Answers  


Categories