answersLogoWhite

0

Just go to your compiler's include directory, and count the files, there can be dozens of them (Or hundreds. Or more.)

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Header files in Java programming?

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


Number of header files in c?

Platform dependent, usually between 10 and 10,000


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.


Explain about header files used in c language?

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


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.


How many header files are there in C?

256


Can you have nested header files in C?

Yes.


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.


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.


A function is declared in C header file When you try to implement in a c source file it is giving error?

The source file must include the header file. Beyond that we can only guess at the problem without seeing the content of the source and header files. Do not post the files here. Such questions are better handled by the many C programming forums available elsewhere on the Internet.


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.