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 the advantages of union?

0 Answers  


Is there any demerits of using pointer?

0 Answers  


main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above

6 Answers  


pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.

4 Answers   Persistent, Valyoo,


Please provide question papers of NATIONAL INFORMATICS CENTRE for Scientific officer

0 Answers  






What is the benefit of using an enum rather than a #define constant?

0 Answers  


why we shiuld use main keyword in C

5 Answers  


what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }

3 Answers  


What is bubble sort in c?

0 Answers  


What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }

4 Answers   CTS, Oracle,


print the table 5 in loops

3 Answers  


Explain what is the best way to comment out a section of code that contains comments?

0 Answers  


Categories