how many header file is in C language ?

Answer Posted / aswinisekaran

#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>

Is This Answer Correct ?    17 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

In a switch statement, explain what will happen if a break statement is omitted?

641


What is structure data type in c?

575


Explain what is the benefit of using an enum rather than a #define constant?

728


Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]

635


Explain main function in c?

630






What are static variables in c?

631


What will the code below print when it is executed?   int x = 3, y = 4;         if (x = 4)                 y = 5;         else                 y = 2;         printf ("x=%d, y=%d ",x,y);

1360


What is the use of in c?

583


How do I use strcmp?

645


write a program fibonacci series and palindrome program in c

633


Define the scope of static variables.

608


How do you list files in a directory?

566


What do you mean by command line argument?

650


What is the difference between malloc() and calloc() function in c language?

607


What is indirection in c?

631