answersLogoWhite

0

to install the graphics driver

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is bgi in computer graphics?

full form of bgi is borland graphics interface


What does bgi mean in graphics?

bgi in computer graphics means "borland graphics interface", these r the files which contains information about all the graphics funtion.


How do you use bgi graphics of c plus plus on tft screen?

TFT or CRT doesn't make difference in using BGI graphics.


What is the fullform of BGI?

The Borland Graphics Interface, also known as BGI, is a graphics library bundled with several Borland compilers for the DOS operating systems since 1987.


What is bgi?

BGI stands for Borland Graphics Interface. These are the files that contains the information about the graphic functions to be used. These are responsible for performing graphic operations under dos. In Borland turbo c++ these files are contained in directory. -> c:\tc\bgi By default these are loaded in the current directory while compiling and executing the program under c/c++ but sometimes we need to specify their path in "initgraph() function. like: initgrapy(&gdriver,&gmode,"c:\\tc\\bgi"); otherwise it will display you error about bgi.


What is .bgi files in c?

In C: nothing in TurboC: datafiles, necessary to graphics modes


What is the market cap for Birks Group Inc BGI?

As of July 2014, the market cap for Birks Group Inc. (BGI) is $23,727,955.44


Are there mira and spectra in Bakugan Gundalian Invaders?

No, Mire and Spectra arnt in BGI


What is the symbol for Birks Group Inc in the AMEX?

The symbol for Birks Group Inc. in the AMEX is: BGI.


What is the names of the airports in Barbados's?

The sole Barbados airport is Grantley Adams International (IATA Code: BGI)


What is the airport code for Grantley Adams International Airport?

The airport code for Grantley Adams International Airport is BGI.


How do you draw a line using C graphics?

its very easy just include the graphics directory in your program... out put a dot on the screen.... in loop like.. Horizontal line from point A(x1,y1) B(x2,y2) start to out put the point from x1,y1 and then evry next loop keep y1 the same and increment x1 by 1. Thanks There is one more function in graphic library of C++, that is line(). It has four arguments of int type. line(starting x coordinate, starting y coordinate, end x coordinate, end y coordinate); setlinestyle() and setlinecolor() can be used for different line colors and line styles.