#include #include main() { int n = 1234; srand( n ); printf("RAND_MAX = %d\n", RAND_MAX); printf("random number = %d\n", rand()); exit(0); }