#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/spring2013/common/random_numbers.txt · Last modified: 2013/02/27 19:43 by 127.0.0.1