include <stdio.h>
include <time.h>
int main(void)
{
srand(time(NULL));
printf("%i\n",ran(void));
}Now where do I stick the modulus at here to get single digit numbers? Bill
include <stdio.h>
include <time.h>
int main(void)
{
srand(time(NULL));
printf("%i\n",ran(void));
}Now where do I stick the modulus at here to get single digit numbers? Bill