标签: c random numbers srand
如何使用rand()和srand()在C中生成没有time.h的随机数?
答案 0 :(得分:3)
你可以尝试将另一个种子给予随机生成器,就像程序的pid一样。
srand(getpid()); int num = rand();