how many header file is in C language ?
Answer Posted / kaushik makani
#include<assert.h>
#include<complex.h>
#include<ctype.h>
#include<errno.h>
#include<fenv.h>
#include<float.h>
#include<inttypes.h>
#include<iso646.h>
#include<limits.h>
#include<locale.h>
#include<math.h>
#include<setjmp.h>
#include<signal.h>
#include<stdarg.h>
#include<stdbool.h>
#include<stddef.h>
#include<stdint.h>
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<tgmath.h>
#include<time.h>
#include<wchar.h>
#include<wctype.h>
#include<conio.h>
#include<math.h>
#include<graphic.h>
#include<ctype.h>
#include<malloc.h>
#include<calloc.h>
#include<sound.h>
total 42 headerfile avaleble in c
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Is there sort function in c?
How can I ensure that integer arithmetic doesnt overflow?
How to explain the final year project as a fresher please answer with sample project
What is restrict keyword in c?
Explain what is the difference between functions abs() and fabs()?
What is difference between scanf and gets?
Are local variables initialized to zero by default in c?
How can a program be made to print the name of a source file where an error occurs?
Can a pointer be null?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
What is || operator and how does it function in a program?
What is the maximum no. of arguments that can be given in a command line in C.?
What do you mean by scope of a variable in c?
How we can insert comments in a c program?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?