how many header file is in C language ?

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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the features of the c language?

650


Differentiate between ordinary variable and pointer in c.

623


Explain can you assign a different address to an array tag?

648


In c programming, explain how do you insert quote characters (? And ?) Into the output screen?

768


What is pointer to pointer in c language?

600






#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

668


Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?

632


Why we write conio h in c?

569


Tell me is null always defined as 0(zero)?

677


When is a void pointer used?

682


Can static variables be declared in a header file?

620


Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

657


What is output redirection?

698


What is build process in c?

647


Explain the use of 'auto' keyword

682