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...

Tell us the difference between these two :
#include"stdio.h"
#include<stdio.h>
define in detial.

Answer Posted / sourisengupta

"stdio.h" linker search the header file first in the
current directory, if it does not find there then it will
search the directory which is declared by the compiler as a
header file directory and all the header file stores there.

<stdio.h> linker search the header file in all the
particular which is declared by the compiler as a header
file directory.

Is This Answer Correct ?    6 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does sizeof int return?

1079


Is exit(status) truly equivalent to returning the same status from main?

1068


Write a program of advanced Fibonacci series.

1145


How can you draw circles in C?

1156


List out few of the applications that make use of Multilinked Structures?

2187


What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25

1981


What does void main () mean?

1234


In C programming, what command or code can be used to determine if a number of odd or even?

1054


What does the message "automatic aggregate intialization is an ansi feature" mean?

1185


Explain the difference between structs and unions in c?

1020


What is the difference between struct and typedef struct in c?

1124


.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }

2581


How do I create a directory? How do I remove a directory (and its contents)?

1166


What is the difference between constant pointer and constant variable?

1222


which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above

2057