描述
C库函数void srand(unsigned int seed)种子函数使用的随机数生成器rand。
声明
以下是 srand() 函数的声明。
void srand(unsigned int seed)
参数
seed─ 这是一个整数值,用作伪随机数生成器算法的种子。
返回值
此函数不返回任何值。
示例
下面的例子展示了 srand() 函数的用法。
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main () {
int i, n;
time_t t;
n = 5;
/* Intializes random number generator */
srand((unsigned) time(&t));
/* Print 5 random numbers from 0 to 50 */
for( i = 0 ; i < n ; i++ ) {
printf("%d\n", rand() % 50);
}
return(0);
}
让我们编译并运行上面的程序,它会产生以下结果——
38 45 29 29 47
相关用法
- C语言 setlocale()用法及代码示例
- C语言 sinh()用法及代码示例
- C语言 scanf()用法及代码示例
- C语言 strcspn()用法及代码示例
- C语言 setlinestyle()用法及代码示例
- C语言 showbits()用法及代码示例
- C语言 sqrt()用法及代码示例
- C语言 system()用法及代码示例
- C语言 strtol()用法及代码示例
- C语言 sprintf()用法及代码示例
- C语言 sscanf()用法及代码示例
- C语言 snprintf()用法及代码示例
- C语言 strrchr()用法及代码示例
- C语言 strftime()用法及代码示例
- C语言 strtok()用法及代码示例
- C语言 strncat()用法及代码示例
- C语言 宏 setjmp()用法及代码示例
- C语言 scanf()和gets()的区别用法及代码示例
- C语言 strupr()用法及代码示例
- C语言 strlen()用法及代码示例
注:本文由纯净天空筛选整理自 C library function - srand()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。