Tell us the difference between these two :
#include"stdio.h"
#include<stdio.h>
define in detial.
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
Answer / bipin chandra sai.s
hay there no difference between both of them both are same
| Is This Answer Correct ? | 0 Yes | 5 No |
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
Add Two Numbers Without Using the Addition Operator
What is c language and why we use it?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
What is the difference between a free-standing and a hosted environment?
What is sizeof c?
how to build a exercise findig min number of e heap with list imlemented?
Differentiate between null and void pointers.
difference between semaphores and mutex?
What is #include cctype?