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.

14 lines
257 B
C

#include <stdio.h>
#include <stdlib.h>
int main()
{
int c, n;
printf("Ten random numbers in [1,100]\n");
for (c = 1; c <= 10; c++)
{
n = rand() % 100 + 1;
printf("%d\n", n);
}
return 0;
}