======Random Numbers====== #include #include 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); }