같은 수가 나오는 srand rand 어떻게 하나요. 같은 시간에 동시에 두개의 프로그램을 실행하면 같은 수가 나오나요? #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> int main() { int i, j, n, t, x=0, y=1; struct timeval tv; gettimeofday(&tv, NULL); t=tv.tv_usec; printf("%d\n",t); sr..