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 |
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
different between overloading and overriding
1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
What's wrong with "char *p; *p = malloc(10);"?
What type of function is main ()?
how to find out the inorder successor of a node in a tree??
1 232 34543 4567654 can anyone tell me how to slove this c question
what is recursion in C
How can draw a box in cprogram without using graphics.h header file & using only one printf(); ?
What is use of pointer?
WHOT IS CHAR?