写一段生成随机图片验证码的代码片段
时间: 2023-03-31 19:01:25 浏览: 112
以下是生成随机图片验证码的代码片段:
```c
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
int i, j, k;
char code[5];
srand(time(NULL));
for (i = ; i < 5; i++) {
k = rand() % 2;
if (k == ) {
code[i] = rand() % 26 + 'a';
} else {
code[i] = rand() % 10 + '';
}
}
printf("验证码为:");
for (j = ; j < 5; j++) {
printf("%c", code[j]);
}
printf("\n");
return ;
}
```
这段代码会生成一个由 5 个字符组成的随机验证码,其中包含小写字母和数字。每次运行程序都会生成一个不同的验证码。
阅读全文