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
How can I prevent another program from modifying part of a file that I am modifying?
Why c is faster than c++?
What is 1f in c?
what is a function method?give example?
Is c a great language, or what?
what are the different storage classes in c?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Explain about the functions strcat() and strcmp()?
How many levels of pointers can you have?
Define C in your own Language.
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What is the easiest sorting method to use?
What is the use of header?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
What is #include stdio h and #include conio h?