PDA

Click to See Complete Forum and Search --> : bgi equv in vc++


purusingh
Oct 10th, 2002, 02:45 AM
what is the equivalent of bgi(borland graphical interface) in visual c++?

How to use randomize in vc++?

parksie
Oct 10th, 2002, 04:51 AM
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 :)