how many header file is in C language ?
Answer Posted / ashish kumar
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<math.h>
#include<graphic.h>
#include<string.h>
#include<ctype.h>
#include<malloc.h>
#include<calloc.h>
#include<sound.h>
Above list are few header file in C. And many more header
file in C language.
Is This Answer Correct ? | 155 Yes | 41 No |
Post New Answer View All Answers
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
What is a #include preprocessor?
Explain modulus operator. What are the restrictions of a modulus operator?
How do you initialize pointer variables?
What is a shell structure examples?
what is the format specifier for printing a pointer value?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What is pointer to pointer in c language?
What type of function is main ()?
Write a program to know whether the input number is an armstrong number.
What is structure of c program?
What are integer variable, floating-point variable and character variable?
What is the full form of getch?
What is the difference between far and near ?
How #define works?