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 |
How can I increase the allowable number of simultaneously open files?
How does the C program handle segmentation faults?
What is wild pointer in c with example?
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
with out using main how to execute the program?
what is a function method?give example?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
Why cant I open a file by its explicit path?
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
What are the 5 elements of structure?