더북(TheBook)

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;
} 

실행결과 icon_con

난수 초기화 이전...
1 7 4 0 9 4 8 8 2 4

난수 초기화 이후...
0 1 2 3 4 9 7 6 2 7
신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.