how many header file is in C language ?

Answers were Sorted based on User's Feedback



how many header file is in C language ?..

Answer / sandeep reddy k

There are 19 header files in c language. Obviously we use some header files in particular cases.

Is This Answer Correct ?    3 Yes 2 No

how many header file is in C language ?..

Answer / 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

how many header file is in C language ?..

Answer / saisujith

27 header files are there.... According to borland compiler.. later it is about increased there mark....

Is This Answer Correct ?    7 Yes 7 No

how many header file is in C language ?..

Answer / saisujith

27 header files according to borlandc ...... There after it
may be increased....
But 27 header files is the correct one....

Is This Answer Correct ?    5 Yes 5 No

how many header file is in C language ?..

Answer / janardhan

In C Language 432 header files are there

Is This Answer Correct ?    0 Yes 0 No

how many header file is in C language ?..

Answer / chanchal kardam

The correct answer is 41 header files in C language

Is This Answer Correct ?    0 Yes 0 No

how many header file is in C language ?..

Answer / a.bindhu bhargavi

There are 256 header files in C language

Is This Answer Correct ?    0 Yes 0 No

how many header file is in C language ?..

Answer / amrish

29

Is This Answer Correct ?    1 Yes 2 No

how many header file is in C language ?..

Answer / naznin nahar

there are64 header file in c language

Is This Answer Correct ?    0 Yes 2 No

how many header file is in C language ?..

Answer / vijay satani

54 headerfile

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More C Interview Questions

How would you find a cycle in a linked list?

3 Answers   NSN,


What is local and global variable in c?

0 Answers  


#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }

9 Answers   TCS,


in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?

11 Answers   IBM,


a value that does not change during program execution a) variabe b) argument c) parameter d) none

0 Answers  


What is a union?

0 Answers  


What is the best style for code layout in c?

0 Answers  


Tell us bitwise shift operators?

0 Answers  


what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }

3 Answers  


what is the format specifier for printing a pointer value?

0 Answers  


Identify the operators that is not used with pointer a. && b. # c. * d. >>

2 Answers  


When should I declare a function?

0 Answers  


Categories