/* this program prints out the first 12 numbers returned by the rand function, NOT using time to initialize the seed. */ #include // for printf #include // for rand int main () { printf ("the first 12 numbers returned by the rand function are:\n"); for (int i = 0; i < 4; i++) printf ("%15d %15d %15d\n", rand(), rand(), rand()); return 0; }