Go to the first, previous, next, last section, table of contents.
#include <stdlib.h> long random(void);
Returns a random number in the range 0..MAXINT.
0 .. MAXINT
not ANSI, not POSIX
/* Produce a random integer between 0 and 199. */ int random_number = random () % 200;
Go to the first, previous, next, last section, table of contents.