User Tools

Site Tools


haas:fall2020:cprog:random_numbers

Random Numbers

#include <stdio.h>
#include <stdlib.h>
 
int main()
{
    int x;
 
    srand(time(NULL));
 
    // Pick a pseudorandom number between 1 and 10
    //
    x = rand() % 9 + 1;
 
    fprintf(stdout, "The number chosen was: %u\n", x);
 
    return(0);
 
}
haas/fall2020/cprog/random_numbers.txt · Last modified: 2013/02/27 14:43 by 127.0.0.1