在C中生成随机整数

在C中生成随机整数

是否有函数在C中生成随机整数?还是我必须使用第三方库?

最佳答案

#include <time.h>
#include <stdlib.h>

srand(time(NULL));   // Initialization, should only be called once.
int r = rand();      // Returns a pseudo-random integer between 0 and RAND_MAX.
在Linux上,您可能更喜欢使用random and srandom

关于c - 如何在C中生成随机整数?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/822323/

10-11 18:45