answersLogoWhite

0

It shows the header information..

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What are the Names of header files in java?

Java doesn't use header files.


Why to use header file to easy know?

in the java as we use the inheritance property in the same way we can get the the inheritance property in c by using the prepared header files( .h files). there a single program in c use the many methods of many header files like math.h give us to use the use of floor(), sqrt() e.t.c. functions..


Why you use header files in c?

the use of header files is to add functionality. Header files are basically saying put code in that header file here so you don't have to type that many lines of code.


What is the use of header files as used in C programming?

Header files are used to have declarations. It is simple to include a single header file than writing all the needed functions prototypes.


What is the role of header files in c?

Header files allow the user to make use of predefined libraries in order to save time and reuse code.


Can you use header files on the bottem of the program?

You can use header files (more specifically "include" files) anywhere in a program. You just have to consider what type of statements, declarative or definitive, there are in the include file, and what your effective scope is. That is why they are generally at the top.


How many header are using in c programming?

No explicit limit, you can use so many header files as you want.


How to use graphics in c plus plus?

At the beginning in the header file: #include <graphics.h>


Why doesn't Java use header files?

A header file in C is used to import the features of parent classes in our class. The same feature is provided by the import statement in Java hence the header files are not used.


Which directories should be entered for graphics code in c?

use grphics.h header file


Can graphics be added to c?

You can use graphics libraries in C, but those are platform-dependent; for Dos/TurboC consult BGI.H and BGIDEMO.C


Why you use dosh in c plus plus?

In short, you don't use it at all, not unless you're specifically writing code for standalone DOS (disk operating system) that are well over 20 years old now. The <dos.h> header is actually a C library header rather than a C++ library header, but it is not actually part of the standard C specification. It is specifically intended for standalone DOS systems, such as MS-DOS, PC-DOS, IBM-DOS and so on. You cannot use it on Windows 95 or later operating systems since all the functionality previously provided by DOS is now provided by Windows itself, so you must include the <windows.h> header instead. And since it is DOS only, it is obviously not portable. You can use it on Windows 3 and earlier systems since Windows 3 is not an operating system in its own right and is entirely reliant upon an underlying DOS system.