描述
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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。