how many header file is in C language ?

Answer Posted / varun nayyar

<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 ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?

575


What is %lu in c?

677


Why do we use static in c?

629


Write a program for Overriding.

680


What is the difference between printf and scanf )?

587






How do you list a file’s date and time?

626


What should malloc() do? Return a null pointer or a pointer to 0 bytes?

617


Under what circumstances does a name clash occur?

686


Is null equal to 0 in sql?

644


What are static variables in c?

627


Explain what are compound statements?

599


Explain what is wrong with this program statement? Void = 10;

761


Hai what is the different types of versions and their differences

1484


Explain how many levels deep can include files be nested?

622


This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory

726