how many header file is in C language ?
Answer Posted / sai bharadwaj
the following are some of the header files in c:
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<stdlib.h>
#include<floats.h>
#include<conio.h>
#include<time.h>
#include<limits.h>
#include<graphic.h>
#include<ctype.h>
#include<malloc.h>
#include<calloc.h>
#include<sound.h>
there are about 32 header files in c
| Is This Answer Correct ? | 65 Yes | 36 No |
Post New Answer View All Answers
What are loops in c?
Differentiate between null and void pointers.
What are high level languages like C and FORTRAN also known as?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
Explain modulus operator. What are the restrictions of a modulus operator?
What are the rules for the identifier?
How do you determine a file’s attributes?
How many data structures are there in c?
How can I open files mentioned on the command line, and parse option flags?
What is the explanation for modular programming?
Explain what is the purpose of "extern" keyword in a function declaration?
What is chain pointer in c?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What does the format %10.2 mean when included in a printf statement?
Explain null pointer.