Monday 17 September 2012

c program to generate random numbers


DESCRIPTION:
c program generates random numbers using random function, randomize function is used to initialize random number generator. If you don't use randomize function then you will get same random numbers each time you run the program.
PROGRAM
C programming code using rand
#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);
  }

No comments:

Post a Comment