srand()参数
大家好,srand()函数的参数为一正整数,但该参数是否得是无符号整型,或者也可以是无符号长整型甚至更大的类型呢?谢谢
srand()
参数为无符号整数类型
srand((unsigned int)n);
可以强制转换为 unsigned int
如:
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
srand((unsigned int)time(NULL));