标签: c random
如何在C中生成随机数,以便在同一时间运行多个进程?
我想使用srand和rand,但我不知道(可能使用进程ID?)。
srand
rand
答案 0 :(得分:10)
您可以根据进程ID为每个进程使用不同的种子,例如:
srand(getpid());
然后只使用rand()。
rand()