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

write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values.  The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.

0 Answers  


Average of a couple 10 years ago was 25. The average remains same after having a child and twins after 3 years. What is the present age of the first child

10 Answers   IBM, Infosys,


When we use void main and int main?

0 Answers  


What is the difference between NULL and NUL?

0 Answers   Aspire, Infogain,


what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1

1 Answers   IBM,






What are the 3 types of structures?

0 Answers  


what is computer

4 Answers  


while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.

1 Answers   TCS,


What is the difference between the = symbol and == symbol?

0 Answers  


What is volatile variable in c with example?

0 Answers  


WHAT IS INT?

8 Answers   Accenture,


What is the mean of function?

0 Answers  


Categories