C 语言标准库函数 - srand()
C 语言标准库 <stdlib.h> 函数 void srand(unsigned int seed) 播种由函数 rand 使用的随机数发生器
头文件
#include <stdlib.h>
函数原型
下面是 srand() 函数的原型
void srand(unsigned int seed)
参数
- seed : 这是一个整型值,用于伪随机数生成算法播种
返回值
无
范例
下面的范例演示了 srand() 函数的用法
/** * file: main.c * author: 简单教程(www.twle.cn) * * Copyright © 2015-2065 www.twle.cn. All rights reserved. */ #include <stdio.h> #include <stdlib.h> #include <time.h> int main() { int i, n; time_t t; n = 4; /* 初始化随机数发生器 */ srand((unsigned) time(&t)); /* 输出 0 到 50 之间的 5 个随机数 */ for( i = 0 ; i < n ; i++ ) { printf("%d\n", rand() % 50); } return(0); }
编译运行范例,输出结果如下
$ gcc main.c && ./a.out 2 11 8 9