how many header file is in C language ?
Answer Posted / vishal rana
#include<stdio.h>
#include<conio.h>
#include<math.h>
#include<string.h>
#include<malloc.h>
#include<process.h>
#include<time.h>
#include<calloc.h>
#include<graphic.h>
#include<limits.h>
| Is This Answer Correct ? | 34 Yes | 24 No |
Post New Answer View All Answers
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What do header files do?
What do you mean by invalid pointer arithmetic?
Tell us the use of fflush() function in c language?
Can include files be nested?
What are extern variables in c?
What 'lex' does?
How can you draw circles in C?
What is the difference between void main and main in c?
What does %c do in c?
List the different types of c tokens?
What are local static variables?
What is meant by errors and debugging?
How can I dynamically allocate arrays?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix