what is the equivalent of bgi(borland graphical interface) in visual c++?
How to use randomize in vc++?
Printable View
what is the equivalent of bgi(borland graphical interface) in visual c++?
How to use randomize in vc++?
Graphics: You have no DOS graphics in VC++, use OpenGL or DirectX.
Random numbers: Use srand(time(NULL)) at the start of your program, then call rand() when you want a random number :)