挥汗拜求大牛!一个小程序的调试,编译出错(devc++环境)

#include<stdio.h>#definePASSWORD"12345678"intverify_password(char*password){intauthen... #include<stdio.h>
#define PASSWORD"12345678"
int verify_password(char *password)
{
int authentticated;
authentticated=strcmp(password,PASSWORD);
return authentticated;

}
main()
{
int valid_flag=0;
char password[1024];
while(1)
{
printf("please input password:");
scanf("%s",password);
valid_flag=verify_password(password);
if(valid_flag)
{
printf("incorrect password!\n\n");
}
else
{
printf("Yes!\n\n");
break;
}
}

}

以下是编译时出错信息:

2:17 C:\Users\Administrator\Desktop\新建文件夹\未命名1.cpp [Warning] ISO C requires whitespace after the macro name
C:\Users\Administrator\Desktop\新建文件夹\未命名1.cpp In function `int verify_password(char*)':
6 C:\Users\Administrator\Desktop\新建文件夹\未命名1.cpp `strcmp' undeclared (first use this function)
(Each undeclared identifier is reported only once for each function it appears in.)
不甚感激!
展开
 我来答
loverBB_h
推荐于2017-11-24 · TA获得超过274个赞
知道小有建树答主
回答量:424
采纳率:0%
帮助的人:341万
展开全部
2:17 C:\Users\Administrator\Desktop\新建文件夹\未命名1.cpp [Warning] ISO C requires whitespace after the macro name
错误出在:
#define PASSWORD "12345678" //少个空格

`strcmp' undeclared (first use this function)
需要:
#include <string.h>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式