answersLogoWhite

0

List of header files in c?

User Avatar

Anonymous

14y ago
Updated: 8/17/2019

#include<stdio.h>

#include<conio.h>

#include<stdlib.h>

#include<graphics.h>

#include<time.h>

#include<limits.h>

#include<alloc.h>

and many more

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Explain about header files used in c language?

list of header files in c and function prototype associated with each file


Header files in Java programming?

Java does not require header files like C/C++.


How can you create a c program without using header file?

C programs do not require header files. If you want a C program without header files, you can simply not create them. However, you may or may not be able to include your non-header file source files.


Why is it necessary to include header files in C?

It isn't necessary to include header files in C. However, without the functionality provided by some header files, your program wouldn't be able to do very much that is useful.


What is header function definition in c language?

No predefined 'header' function in the standard C libraries. There are header files, if that's what you mean.


How many header files are there in C?

256


Can you have nested header files in C?

Yes.


Where are the C header files in Linux?

The C header files are in the same place as other Unix and Unix-like systems: /usr/include if you installed the compiler.


Is header files in c are similar to packages in java?

No.


Why need to declare header files compulsory in c plus plus but not in c?

The need to declare header files is not compulsory in C++. You may place all your code in a single source file if you so desire. However, header files are useful in that they separate interface from implementation and aid in hiding information.


Why are header files not required when using far and near pointers?

In C programming, header files are required. It doesn't matter if you are using near pointers, far pointers, both, or neither -- you still need header files. There is no connection between the necessity of header files and the pointers' size.


What is the header files from random functions?

The header file for random functions ( like rand(), srand() ) is stdlib.h in C and cstdlib in C++.