根据博客园官网查询,一种是通过内核导出的随机数接口,另一种是通过特殊的设备文件。
Linux是一种开源电脑 *** 作系统内核。它是一个用C语言写成,符合POSIX标准的类Unix *** 作系统。
#include "stdio.h"#include "stdlib.h"
#include "time.h"/*需引用的头文件*/
int main(){
srand((unsigned)time(NULL))/*随机种子*/
int a=0,b=255//ASCII 字符范围
int i
for (i=0i<256i++){
int n=rand()%(b-a+1)+a/*n为a~b之间的随机数*/
printf("%c ",n)
}
return 0
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)