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 is operator promotion?
What is the explanation for the dangling pointer in c?
What do you mean by invalid pointer arithmetic?
What the advantages of using Unions?
Who developed c language and when?
Is a pointer a kind of array?
What does a function declared as pascal do differently?
what is the difference between embedded c and turbo c ?
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
Explain the process of converting a Tree into a Binary Tree.
how to get the starting address of file stored in harddisk through 'C'program.