how many header file is in C language ?
Answers were Sorted based on User's Feedback
Answer / kuldeep
hi there total 48 header files in provided by the turbo c++.
if u want to saw all the header file : go in turbo c++ ide screen then:
1-> press + f1
2> open the header file nd count
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / kumaresan
C library having n number of header files. It can be used in
different purposes. Mostly used header files is stdio.h &
conio.h.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / jaspreet singh
256 header files are available in c languarge
| Is This Answer Correct ? | 8 Yes | 7 No |
Answer / palanisamy
#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>
| Is This Answer Correct ? | 2 Yes | 1 No |
What is c method?
What are pointers? What are different types of pointers?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What language is c written?
main() { float a=3.2e40; printf("%d",a); }
Can you please explain the difference between strcpy() and memcpy() function?
to find out the reverse digit of a given number
6 Answers Infosys, Microsoft, TCS, Wipro,
Explain how can I open a file so that other programs can update it at the same time?
in iso what are the common technological language?
What is meant by int fun const(int a, int b) { .... ... }
What is the purpose of realloc()?