Tell us the difference between these two :
#include"stdio.h"
#include<stdio.h>
define in detial.
Answer Posted / 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 |
Post New Answer View All Answers
What does sizeof int return?
Is exit(status) truly equivalent to returning the same status from main?
Write a program of advanced Fibonacci series.
How can you draw circles in C?
List out few of the applications that make use of Multilinked Structures?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What does void main () mean?
In C programming, what command or code can be used to determine if a number of odd or even?
What does the message "automatic aggregate intialization is an ansi feature" mean?
Explain the difference between structs and unions in c?
What is the difference between struct and typedef struct in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
How do I create a directory? How do I remove a directory (and its contents)?
What is the difference between constant pointer and constant variable?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above