random number

#include <stdio.h>
#include <stdlib.h>

int main() 
{
  int c, n , k;

  printf(" Number of random numbers to be printed : \n");
  scanf("%d",&k);

  for (c = 1; c <= k; c++) {
    n = rand() % 100 + 1;
    printf("%d\n", n);
  }

  return 0;
}


OUTPUT : -






For Other Programs Visit The WebSite:-   https://www.techapurba.com/

Follow Me On Social Media :-

For tech related videos visit my other website :- https://apurbatechinfo.blogspot.com/

Post a Comment

0 Comments