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 |
Explain how do you determine the length of a string value that was stored in a variable?
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
write a program to find the number of even integers and odd integers in a given array in c language
13 Answers IAI Cameroun, NIIT, Olive Tech, QIS,
What is the usage of the pointer in c?
I didn't count the ducks that I saw in line, but I do remember that one duck was in front of two ducks, another duck behind two ducks. How many ducks did I see?
Why shouldn’t I start variable names with underscores?
what is linkage error when it occurs in c program
Write a program that will read the input of any number of digits n in a row of shafh showing the breakdown of the printing and printing figures by the recursive function.
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
What is NULL pointer?
what is the use of a array in c