Everything

rand


疑似乱数列生成を行います。

[所属]

標準ライブラリ

[指定形式]

#include <stdlib.h>

int rand(void);

[戻り値]

乱数を返します。

[詳細説明]

0以上RAND_MAX以下の乱数を返します。

[使用例]

#include    <stdlib.h>
void func(void) {
    if((rand() & 0xF) < 4)
        func1();    /*25%の確率でfunc1を実行*/
}