4.4.1 난수.c
int main(void) {
printf("난수 초기화 이전...\n");
for (int i = 0; i < 10; i++) {
printf("%d ", rand() % 10);
}
srand(time(NULL)); // 난수 초기화
printf("\n\n난수 초기화 이후...\n");
for (int i = 0; i < 10; i++) {
printf("%d ", rand() % 10);
}
return 0;
}
실행결과 |
난수 초기화 이전... 1 7 4 0 9 4 8 8 2 4 난수 초기화 이후... 0 1 2 3 4 9 7 6 2 7 |