what is the difference between <stdio.h> and "stdio.h"
Answer Posted / shipra
#include<stdio.h> this command look for the file stdio.h
in the specified list of directories only
and
#include"stdio.h" would look the file stdio.h in the current
directory as well as the specified list of directories as
mentioned in the include search path
| Is This Answer Correct ? | 13 Yes | 5 No |
Post New Answer View All Answers
write a program to create a sparse matrix using dynamic memory allocation.
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What happens if a header file is included twice?
What is structure data type in c?
What is a lvalue
Tell me is null always defined as 0(zero)?
Explain the use of function toupper() with and example code?
Explain how can a program be made to print the line number where an error occurs?
How do we print only part of a string in c?
Can include files be nested?
Explain what are reserved words?
provide an example of the Group by clause, when would you use this clause
Difference between macros and inline functions? Can a function be forced as inline?
What are the types of assignment statements?
What are the two forms of #include directive?