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

Answers were Sorted based on User's Feedback



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

Answer / arif

"stdio.h" linker search the header file in the current directory
<stdio.h> linker search the header file in all the directories

Is This Answer Correct ?    15 Yes 2 No

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

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

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

Answer / arif

"stdio.h" C compiler-preprocessor search the header file in the current directory
<stdio.h> C preprocessor search the header file in all the directories

Is This Answer Correct ?    2 Yes 0 No

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

Answer / g.deepa

#include"stdio.h" is the creating by the user
(within Double quotes header files are created by the user)
#include<stdio.h> is the header file of programming
language.It is the created by the Programmers.

Is This Answer Correct ?    9 Yes 10 No

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

Answer / bipin chandra sai.s

hay there no difference between both of them both are same

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More C Interview Questions

What is operator promotion?

0 Answers  


What is the explanation for the dangling pointer in c?

0 Answers  


What do you mean by invalid pointer arithmetic?

0 Answers  


What the advantages of using Unions?

0 Answers   TISL,


Who developed c language and when?

0 Answers  


Is a pointer a kind of array?

0 Answers  


What does a function declared as pascal do differently?

0 Answers  


what is the difference between embedded c and turbo c ?

1 Answers  


typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?

1 Answers  


write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..

1 Answers  


Explain the process of converting a Tree into a Binary Tree.

0 Answers   Ignou,


how to get the starting address of file stored in harddisk through 'C'program.

2 Answers   Siemens,


Categories