Aliexo
Aliexo

Reputation: 61

#include <graphic.h>

how i use #include <graphic.h> in windows 7 and i use graphic function in visual studio c++ or borland c++ ???

tnx,but : Which library in Console Application mode work?

Upvotes: 0

Views: 3147

Answers (2)

İlknur Baysal
İlknur Baysal

Reputation: 11

You can use Visual Studio 2005/2008/2010 or Borland Dev C++ for graphics.h.

For further detail, you can see this link: https://www.cs.colorado.edu/~main/bgi/visual/

Upvotes: 1

Neigyl R. Noval
Neigyl R. Noval

Reputation: 6038

graphics.h is not a standard c++. It is only Borland specific. I recommend OpenGL library, SDL, or the similar graphic libraries.

Upvotes: 3

Related Questions