
C语言验证码校验
Echo_Flipped
这个作者很懒,什么都没留下…
展开
-
【无标题】
wqewqe原创 2023-02-06 17:41:08 · 70 阅读 · 0 评论 -
C语言界面登录密码隐藏功能
#include <stdio.h> #include <string.h> #include <unistd.h> # include<termios.h> # include<assert.h> int getch() { int c=0; struct termios org_opts, new_opts; int res=0; res=tcgetattr(STDIN_FILENO,原创 2021-05-06 09:14:25 · 1471 阅读 · 0 评论 -
获取验证码以及验证验证码
/* function:验证码 return:正确返回1,否则返回0 */ int identifyCode(void) { char array[100]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; char a[5]=""; char b[5]=""; while(1) { //得到验证码 srand(time(NULL)); a[0] = array[rand原创 2021-05-06 09:08:46 · 1689 阅读 · 0 评论