srand의 시드값을 time 함수의 리턴값으로 해놓고 rand 함수를 호출하면 늘 첫번째 값은 버려야 되는건가여?
아래 소스를 빌드해서 실행 , 종료를 반복해보면 1~100의 값이 랜덤으로 나오는게 아니라 시간차에 따라서 늘어나는 현상이 생김
rand 함수를 한 번 더 호출하면 정상적인 랜덤값이 나오는데 이게 왜이러는건가여? 

#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main()
{
srand((int) time(NULL));
printf(\"%d\\n\",rand()%100+1);
}