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

HOW CAN ADD OUR FUNCTION IN LIBRARY.

5 Answers  


WHOT IS CHAR?

4 Answers   TCS,


Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }

7 Answers   TCS,


What are the key features in c programming language?

0 Answers  


what is difference between ++(*p) and (*p)++

17 Answers   Accenture, HCL, IBM,






What is LINKED LIST? How can you access the last element in a linked list?

0 Answers   ADP,


Write a program that takes a 5 digit number and calculates 2 power that number and prints it

5 Answers   ABS, Accenture, HCL, Infosys, Infotech, SoftSolve, Software India, TCS, Vertex, Vimukti Technologies,


Do array subscripts always start with zero?

0 Answers  


Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.

0 Answers  


Program to find the sum of digits of a given number until the sum becomes a single digit

8 Answers   InterGraph,


Reverse the part of the number which is present from position i to j. Print the new number. eg: num=789876 i=2 j=5 778986

1 Answers  


write a program to display the numbers in the following 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4

1 Answers  


Categories