what is the difference between <stdio.h> and "stdio.h"
Answers were Sorted based on User's Feedback
Answer / tutgfjyhg
What is the difference between #include “stdio.h” and #include <stdio.h> in C?
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / arun.k
#include<stdio.h> does not search the source directory,if
we write #include"stdio.h" it will search the source path
first end include that path
| Is This Answer Correct ? | 8 Yes | 9 No |
Answer / kuldeep
hello in simple way-
when we are using #include<stdio.h> in our program here no
need for search the header files in directory. but when we
are using the #include"stdio.h" in our program firstly
header files search in current directory/parent directory.
| Is This Answer Correct ? | 6 Yes | 7 No |
Answer / cpmt
<stdio.h> searches in the current directory."stdio.h"
searches in the both source and current directory.
| Is This Answer Correct ? | 6 Yes | 10 No |
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
What the advantages of using Unions?
What is structure pointer in c?
write a own function for strstr
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
A program to allow an input operand and operator from the operator and read on the display and output operand.
What is the default value of local and global variables in c?
Why do we use & in c?
What is #define?
What is the easiest sorting method to use?
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.
Give a method to count the number of ones in a 32 bit number?