You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
419 B
C

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
const int LOW = 1;
const int HIGH = 32000;
int main()
{
int randomNumber, i;
time_t seconds;
time(&seconds);
srand((unsigned int) seconds);
for (i = 0; i < 10; i++)
{
randomNumber = rand() % (HIGH - LOW + 1) + LOW;
printf("%d ", randomNumber);
}
printf("...");
return 0;
}