关于C语言数组的一个小问题
代码如下:#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char password = { 0 };
char password_1 = { 0 };
int i = 15;
printf("请输入密码(最大15位):");
scanf("%15[^\n]", password);//只匹配15个字符
printf("请再输入一次密码(最大15位):");
scanf("%*[^\n]"); scanf("%*c"); //清空缓冲区
scanf("%15[^\n]", password_1);//只匹配15个字符
printf("%s\n", password);
printf("%s\n", password_1);
printf("password VS password_1:%d\n",strcmp(password,password_1));
i = strcmp(password, password_1);
printf("%d\n", i);
system("pause");
return 0;
}
我测试这段代码的时候只有输入字符超过11位就会出现一个警告窗口:
搞不明白出了什么问题,请各位指点一下,谢谢。 char password = { 0 };
char password_1 = { 0 };
你这里定义的密码内存大小为12个字节,当时实际上只能存放11个字节 因为 字符串是以'\0'结尾的,如果你要存放长度为15的密码,那么你必须要把密码的内存扩大到16才可以存放长度为15的密码
char password = { 0 };
char password_1 = { 0 }; qq1242009750 发表于 2018-12-9 11:51
char password = { 0 };
char password_1 = { 0 };
是我失误了{:5_99:},多谢了。
页:
[1]