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
What are pointers? What are stacks and queues?
What is LINKED LIST? How can you access the last element in a linked list?
What is difference between far and near pointers?
What is structure padding in c?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What are the different types of pointers used in c language?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
What is s in c?
What is the purpose of 'register' keyword?
Why array is used in c?
What is difference between function overloading and operator overloading?
How many keywords are there in c?
what will be maximum number of comparisons when number of elements are given?
What is the difference between union and structure in c?
Why & is used in scanf in c?