what is the difference between <stdio.h> and "stdio.h"
Answer Posted / 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 |
Post New Answer View All Answers
If null and 0 are equivalent as null pointer constants, which should I use?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
What is the difference between volatile and const volatile?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
Is boolean a datatype in c?
What is the use of function overloading in C?
What is the 'named constructor idiom'?
How can you call a function, given its name as a string?
What is meant by type specifiers?
What is identifier in c?
What is the significance of scope resolution operator?
Write a program to implement queue.
What are pointers? What are stacks and queues?
How is pointer initialized in c?
Difference between constant pointer and pointer to a constant.