반응형
#include <stdio.h>
#include <stdlib.h> // for srand
#include <time.h> // for seed
int main()
{
srand((unsigned)time(NULL));
printf("%d\n", rand());
printf("%d\n", rand()%100);
return 0;
}
반응형
'System Programmings > C' 카테고리의 다른 글
[C] itoa 함수 (0) | 2011.06.12 |
---|---|
[C] Cygwin에서 ssl 사용하기 (0) | 2011.03.23 |
[C] getcputc.c - 파일 복사 및 문자열 복사 (0) | 2011.01.30 |
[C] ls.c - 현재 디렉토리의 파일 및 폴더 출력 (0) | 2011.01.30 |
[C] Advanced Programming In The Unix Environment - Second Edition (0) | 2011.01.30 |