how many header file is in C language ?
Answer Posted / santosh
there are manynumber hedder files because each hedder file
is used for different purpose.
for example if we are using pointers we will include
different hedder files with the standard hedder files as
#include<stdio.h>
| Is This Answer Correct ? | 57 Yes | 36 No |
Post New Answer View All Answers
Explain how can I avoid the abort, retry, fail messages?
Can math operations be performed on a void pointer?
Does * p ++ increment p or what it points to?
What is structure and union in c?
Why does everyone say not to use scanf? What should I use instead?
How can I read and write comma-delimited text?
What is wrong in this statement?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
How do you use a 'Local Block'?
What is the most efficient way to store flag values?
write a program to find the given number is prime or not
Between macros and functions,which is better to use and why?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What is line in c preprocessor?
What is strcmp in c?