RANDOM LOTTERY

ei guys..please help me...tnx..ahmm im assigned to create a program that have random using c++...in lottery game...tnx again for your help...and godbless..
1
2
3
4
5
6
#include <ctime>
#include <cstdlib>
//...
srand(time(0)); //Seed the PRNG.
rand(); //Generate a random int.
//... 
Last edited on
Topic archived. No new replies allowed.