#include "stdio.h"
#include "string.h"
#include "time.h"
#include "stdlib.h"
void main()
{
char checkcode[63]={'q','w','e','r','t','y','u','i','o','p','a','s','d','f','g','h','j','k','l','z','x','c','v','b','n','m','Q','W','E','R','T','Y','U','I','O','P','A','S','D','F','G','H','J','K','L','Z','X','C','V','B','N','M','0','1','2','3','4','5','6','7','8','9'}
char ch[5];
srand((int)time(0));
for(int i=0;i<4;i++)
{
int m=rand()%62;
ch[i]=checkcode(m);
}
ch[i]='\0';
puts(ch);
printf("\n");
}
1,定義數組後面少“;”號
2,checkcode(m) ,這是數組,不是函數
這些問題自己跑一下就出來了