C program to generate random numbers

#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;
}
 
 
For turbo c:-
 
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
 
int main()
{
   int n, max, num, c;
 
   printf("Enter the number of random numbers you want\n");
   scanf("%d", &n);
 
   printf("Enter the maximum value of random number\n");
   scanf("%d", &max);
 
   printf("%d random numbers from 0 to %d are :-\n", n, max);
 
   randomize();
 
   for (c = 1; c <= n; c++)
   {
      num = random(max);
      printf("%d\n",num);         
   }
 
   getch();
   return 0;
}