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 <stdio.h> and "stdio.h"

Answers were Sorted based on User's Feedback



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

Answer / tutgfjyhg

What is the difference between #include “stdio.h” and #include <stdio.h> in C?

Is This Answer Correct ?    0 Yes 0 No

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

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

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

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

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

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

Post New Answer

More C Interview Questions

main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??

19 Answers   EBS, Ramco, Sangwin, TCS,


The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.

0 Answers   Microsoft,


what is constant pointer?

3 Answers  


Write any data structure program (stack implementation)

1 Answers   HTC,


How to write a multi-statement macro?

0 Answers  


Why is not a pointer null after calling free?

0 Answers  


How we can write a value to an address using macro..?

0 Answers   Tata Elxsi,


Is c procedural or functional?

0 Answers  


What is the process to generate random numbers in c programming language?

0 Answers  


write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word

1 Answers   Sienna Ecad, Wipro,


wite a programme in c to linear search a data using flag and without using flags?

3 Answers   TCS,


explain what are pointers?

0 Answers  


Categories