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 are header files in c?

0 Answers  


write the program for maximum of the following numbers? 122,198,290,71,143,325,98

5 Answers  


what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }

3 Answers  


Explain how do you view the path?

0 Answers  


What is a program flowchart and explain how does it help in writing a program?

0 Answers  






What is a pragma?

0 Answers  


can we write a c program with out using main

3 Answers  


An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above

0 Answers  


What is hashing in c?

0 Answers  


What is strcmp in c?

0 Answers  


Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4

3 Answers  


C program to find frequency of each character in a text file?

6 Answers  


Categories