Possible Duplicate:
Generate Random numbers uniformly over entire range
C++ random float
How can I generate a random number between 5 and 25 in c++ ?
#include <iostream>
#include <cstdlib>
#include <time.h>
using namespace std;
void main() {
    int number;
    int randomNum;
    srand(time(NULL));
    randomNum = rand();
}
 
     
     
     
     
     
    