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
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What is a structural principle?
How can I write a function that takes a format string and a variable number of arguments?
What are the advantages of c preprocessor?
Is there any demerits of using pointer?
Why is c so powerful?
Which is better oop or procedural?
What is a example of a variable?
Explain a file operation in C with an example.
What is output redirection?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
Explain what is output redirection?
What are identifiers in c?
Why does this code crash?
What is typeof in c?