扩展阅读
当前位置: 编程语言>c/c++
linux c下利用srand和rand函数生成随机字符串
发布时间:2013-10-19
本文导语: linux c下如何利用srand和rand函数生成随机字符串,下面提供几段代码供参考。参考代码1:#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
int main(int argc, char *argv[])
{
int leng =128 ;
int i, nu ;
c...