how to generate a random number in c between 1 and 10 code example
Example 1: how to generate random between 0 and 9 in c
#include <stdio.h>
#include <stdlib.h>
int main()
{
int randomnumber;
srand(time(NULL));
randomnumber = rand() % 10;
printf("%d\n", randomnumber);
return 0;
}
Example 2: c number randomizer
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(void)
{
int number, min, max;
system("cls");
printf("What is the minimum number?\n");
scanf("%d", &min);
printf("What is the maximum number?\n");
scanf("%d", &max);
printf("\nThe numbers:\n");
srand(time(0));
number = (rand() % (max - min + 1)) + min;
printf("%d ", number);
return 0;
}
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(void)
{
int number, min, max;
system("cls");
printf("What is the minimum number?\n");
scanf("%d", &min);
printf("What is the maximum number?\n");
scanf("%d", &max);
printf("\nThe numbers:\n");
srand(time(0));
number = (rand() % (max - min + 1)) + min;
printf("%d ", number);
return 0;
}