程序没达到目的求帮助!
#include<stdio.h>#include<stdlib.h>
#include<time.h>
int main()
{
char rand_max,ch[5];
int getRandChar(),i;
srand((unsigned)time(NULL));
for(i=0;i<5;i++)
{
ch[i]=(rand()%rand_max+'0');
printf("%c",ch[i]);
}
return ch[i];
}
我只想要就是数字跟字母 但是这个范围还有字符,比如说这样的[,就不知道该怎么改了。。。