#include <stdlib.h> int rand(void); void srand(unsigned int seed);
srand() �Լ��� ���ڸ� rand()�� �����ϴ� pseudo-random ������ ���ο� ���ӵ� ������ ���� ���ڷ� �����Ѵ�. �̵� ���ӵ� ������ ���� seed ������ srand()�� ȣ���Ͽ� �ݺ��ȴ�.
���� � seed ���� �������� �ʴ´ٸ�, rand() �Լ��� �ڵ������� 1 ������ ���ڰ� �ȴ�.
Numerical Recipes in C: The Art of Scientific Computing (William H. Press, Brian P. Flannery, Saul A. Teukolsky, William T. Vetterling; New York: Cambridge University Press, 1990 (1st ed, p. 207))��, ������ ���� �ּ��� �ִ�:
j=1+(int) (10.0*rand()/(RAND_MAX+1.0));
j=1+((int) (1000000.0*rand()) % 10);
Random-number ������ �ſ� ������ �����̴�. Numerical Recipes in C å(���� �����)�� Chapter 7 (Random Numbers)���� random-number ������ ���� �������� �Ǹ��� ����� �����Ѵ�.
�� �̷����� ����� ���ϸ�, ���� �ְ� ���� �������� �̽��� �ٷ�� �ִ� Donald E. Knuth�� The Art of Computer Programming, volume 2 (Seminumerical Algorithms), 2nd ���� Chapter 3 (Random Numbers)�� �����ض�.; Reading, Massachusetts: Addison-Wesley Publishing Company, 1981.