我一直在尝试比较 C 中的两个 char 变量,一个是关键字,另一个是用户输入的密码,但尽管两者都相同,但它不允许我进入。这是代码:
#include<stdio.h>
#include<conio.h>
#include<bios.h>
#include <string.h>
int main(){
char pass[4], key[4]="tres";
start:
clrscr();
printf("Write your password: ");
scanf("%s", &pass);
if (strcmp(pass,key)!= 0){
printf("nWrong password, try again.");
getch();
goto start;
}else if(strcmp(pass,key) == 0){
printf("Welcome!");
getch();
clrscr();
//here goes the rest of the program
}
return 0;
}
strcmp
适用于以空结尾的字符串。 您需要在每个字符串的末尾添加一个