what is difference between #include<stdio.h> and
#include"stdio.h"
Answer Posted / somichoudhary
In #include<stdio.h>
The c compiler search the header files in Tc-Bin library
But in "stdio.h">
search the header files in local c: folder
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
Explain bitwise shift operators?
What is the difference between text and binary modes?
What is meant by int main ()?
Explain what is the difference between a string and an array?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
For what purpose null pointer used?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
find the sum of two matrices and WAP for it.
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
Explain two-dimensional array.
What are the types of bitwise operator?
Can you assign a different address to an array tag?
What does the format %10.2 mean when included in a printf statement?
Describe the header file and its usage in c programming?
How can I implement a delay, or time a users response, with sub-second resolution?