What code do we use to move at a point on the screen in graphics mode(graphics.h)?As in normal we use goto(x,y).
but can use libraries, like "graphics.h" (it seems, a header for a known library...), the OP is not aware likely of the difference (not his fault, I may think), nonetheless a better answer than this can be provided when you realize (as it is easily done) that what he needs is to know "graphics.h" API. Virtual -1 (and citing someone else: this is not an answer, it can be a comment instead)
ShinTakezou
2010-07-03 19:41:36
+2
A:
Don't use graphics.h
. It is a very old DOS library from Borland C++ (note that its not C either but C++). Instead pick up some thing like OpenGL or some higher-level library such as SDL.
thyrgle
2010-07-01 21:13:20
I wonder why a lot of programming course make people use stuffs like "conio.h", "graphics.h"... and the final `system("pause");`... brrr
ShinTakezou
2010-07-03 19:43:54