how many header file is in C language ?
Answer Posted / prasanth prabhakaran
There are some where around 24 header files which are
listed below
<assert.h>
<complex.h>
<ctype.h>
<errno.h>
<fenv.h>
<float.h>
<inttypes.h>
<iso646.h>
<limits.h>
<locale.h>
<math.h>
<setjmp.h>
<signal.h>
<stdarg.h>
<stdbool.h>
<stddef.h>
<stdint.h>
<stdio.h>
<stdlib.h>
<string.h>
<tgmath.h>
<time.h>
<wchar.h>
<wctype.h>
| Is This Answer Correct ? | 24 Yes | 15 No |
Post New Answer View All Answers
Why can't I perform arithmetic on a void* pointer?
Explain About fork()?
Can a variable be both const and volatile?
Why c is a mother language?
What is static memory allocation? Explain
Is it valid to address one element beyond the end of an array?
write a program to display all prime numbers
What is storage class?
Difference between goto, long jmp() and setjmp()?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Explain how does flowchart help in writing a program?
What is bin sh c?
When is a void pointer used?