User Tools

Site Tools


Sidebar

projects

ntr0 (due 20250827)
pct0 (bonus; due 20250827)
pct1 (bonus; due 20250827)
wcp1 (due 20250827)
pct2 (due 20250903)
wcp2 (due 20250903)
haas:fall2025: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/fall2025/cprog/random_numbers.txt · Last modified: by 127.0.0.1