DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Random Number Within A Range
This function returns a random number within a range.
myRandomNumber = computeRandomNumber(rangeLow, rangeHigh);
int computeRandomNumber(int l, int h) {
int randNumber;
int range = h - l;
randNumber = rand() % range + l + 1;
return randNumber;
}





