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 |
Please list all the unary and binary operators in C.
What’s a signal? Explain what do I use signals for?
A program to allow an input operand and operator from the operator and read on the display and output operand.
What is the difference between getch() and getche()?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
how can I convert a string to a number?
Why do we use int main?
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
What is binary tree in c?
What is the difference between a free-standing and a hosted environment?
What is extern keyword in c?
Why can’t constant values be used to define an array’s initial size?