how many header file is in C language ?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
Answer / chanchal kardam
The correct answer is 41 header files in C language
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / a.bindhu bhargavi
There are 256 header files in C language
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the size of a union variable?
What is switch in c?
You are given a string which contains some special characters. You also have set of special characters. You are given other string (call it as pattern string). Your job is to write a program to replace each special characters in given string by pattern string. You are not allowed to create new resulting string. You need to allocate some new memory to given existing string but constraint is you can only allocate memory one time. Allocate memory exactly what you need not more not less.
if a five digit number is input through the keyboard, write a program to calculate the sum of its digits. (hint:-use the modulus operator.'%')
why you will give me a job in TCS.
What is scope rule in c?
Dear Sir, we are required the bubble sorting programs Regs Prem
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
Can a pointer be static?
Is there a way to switch on strings?
write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search