#include #include int main(void) { int i; printf("RAND_MAX = % d\n", RAND_MAX); for (i=0; i<10; i++) printf("% 2d: % d\n", i, rand()); return 0; }