본문 바로가기

System Programmings/C

[C] 난수 생성

반응형
#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;
}


반응형