목록rand (1)
without haste but without rest
[C] srand(time(NULL)) 의 의미
#include srand(time(NULL)) srand(time(NULL)) 해당 함수를 사용해야 랜덤 난수 생성이 가능해진다. 없으면 난수 생성이 아닌, 매번 같은 수를 생성한다. 즉 위 코드가 없으면 rand() 함수를 써도 계속 같은 수가 생성된다. https://stackoverflow.com/questions/52801380/srandtimenull-function srand(time(NULL)) function #include #include int main( void){ int x = rand()%100; printf("%d\n", x); return 0; } The code above generates a random number correctly. Is this cor... stack..
ProgrammingLanguage/C
2020. 4. 9. 17:31