User Tools

Site Tools


Sidebar

projects

  • cci0 (due 20150909)
  • mms0 (due 20150916)
  • dow0 (due 20150923)
  • mbe0 (due 20150930)
  • mbe1 (due 20151007)
  • cos0 (due 20151028)
  • afn0 (due 20151104)
  • sam0 (due 20151111)
  • cbf0 (due 20151118)
haas:fall2015: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/fall2015/cprog/random_numbers.txt · Last modified: 2013/02/27 19:43 by 127.0.0.1