answersLogoWhite

0


Best Answer

It has no use in C++ itself, it is only useful in Borland Turbo C++. It provides generic graphics support for Borland Turbo C++ applications.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the use of header file graphics in c plus plus programming?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How to use graphics in c plus plus?

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


What is the header file for getchar in c plus plus?

I think its in conio.h or stdio.h


Can graphics in C programming done with compilers other than turbo c plus plus?

Of course.


C plus plus reading and writing a file?

Use an input file stream (ifstream) to read from a file and an output file stream (ofstream) to write to a file. Both can be found in the <fstream> standard library header.


What is iosteram in c plus plus?

The <iostream> include file is a header file that contains the prototype declarations of functions that provide the basic input/output mechanisms in C++. The <iostream> header file sets up the objects that initialize the basic input/output pathways, cout and cin.

Related questions

How do you correct the C plus plus programming error missing function header?

You need to #include the header file that contains the missing function's declaration.


How to use graphics in c plus plus?

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


What header file do you need to produce a plot in c plus plus?

There is no such header in the standard library because graphics are a non-generic, platform-specific feature. For graphics output, including a plot, you need a graphics library and API suitable for your platform and hardware.


Where can one learn about windows H?

Windows h is a header file for the programming language C++. If one were looking to learn about this specific header file there are forums that exist specifically for this topic on the C plus plus help page.


Which compiler supports graphics in c plus plus and also mention the header file if possible also mention the example... ............?

All compilers do. You have to download the graphics library yourself.Examples:OpenGLDirectX (also includes other stuff)SDLSFMLConIOetc.


What is the header file for getchar in c plus plus?

I think its in conio.h or stdio.h


How do you include classes and structures in header files in c plus plus?

Classes and structures can be put in a header file the same way you would use them in a main program; the only difference is that they are placed in a separate file, called a header file. Then, after creating a new file, include that new file with the definition by the use of the preprocessor #include statement.


Can graphics in C programming done with compilers other than turbo c plus plus?

Of course.


C plus plus reading and writing a file?

Use an input file stream (ifstream) to read from a file and an output file stream (ofstream) to write to a file. Both can be found in the <fstream> standard library header.


What is iosteram in c plus plus?

The <iostream> include file is a header file that contains the prototype declarations of functions that provide the basic input/output mechanisms in C++. The <iostream> header file sets up the objects that initialize the basic input/output pathways, cout and cin.


C plus plus can be used for 1. object oriented programming 2. create multi flat from programming 3. create graphics to programming?

yes, except for 'creating multi flat form programming'... it is ctually 'creating multiplatform program'


What is the header file for using graphics in c plus plus?

There is no graphic.h in the standard C++ language. It typically ships with 3rd party C++ implementations that incorporate the Borland Graphic Interface or one of its variants, such as Embarcadero Builder. It can also be used with Dev C++ if you install the WinBGIM library. Its primary purpose is to provide Windows graphics support since C++ has no built-in graphics support of any kind.