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

difference between malloc and calloc

3 Answers   HCL, Wipro,


What is getch c?

0 Answers  


Is c procedural or object oriented?

0 Answers  


What is nested structure?

0 Answers  


main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }

1 Answers   CodeChef,






Differentiate between a structure and a union.

0 Answers   Zensar,


f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?

5 Answers   Geometric Software,


Is boolean a datatype in c?

0 Answers  


Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"

15 Answers   Accenture,


What is echo in c programming?

0 Answers  


4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it. i have done maximum par but i m findind problem in the commented area. please help...

3 Answers  


int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?

7 Answers   Parimal, Wipro,


Categories