[求助]请教 srand 函数
手册上 用了 srand ( (unsigned) time(&t) )unsigned 是未定义吗?
&t是时间吗?
srand(time(NULL));
函数名: time
功 能: 取一天的时间
用 法: logn time(long *tloc);
程序例:
#include <time.h>
#include <stdio.h>
#include <dos.h>
int main(void)
{
time_t t;
t = time(NULL);
printf("The number of seconds since January 1, 1970 is %ld",t);
return 0;
}
谢谢!!