how many header file is in C language ?
Answer Posted / sai bharadwaj
the following are some of the header files in c:
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<stdlib.h>
#include<floats.h>
#include<conio.h>
#include<time.h>
#include<limits.h>
#include<graphic.h>
#include<ctype.h>
#include<malloc.h>
#include<calloc.h>
#include<sound.h>
there are about 32 header files in c
| Is This Answer Correct ? | 65 Yes | 36 No |
Post New Answer View All Answers
What is a structural principle?
What is the use of bit field?
What is variable initialization and why is it important?
Why use int main instead of void main?
Can you return null in c?
What is a nested formula?
What is calloc malloc realloc in c?
What is the meaning of ?
Is c easier than java?
What is the explanation for the dangling pointer in c?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
What are valid signatures for the Main function?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
what is a constant pointer in C
What is the difference between exit() and _exit() function in c?