当前位置: 技术问答>linux和unix
不知为什么不相等
来源: 互联网 发布时间:2016-02-03
本文导语: #include #include main() { char buf[50]; int num; buf1=fgets(buf,50,stdin); //stdin为标准输入 printf("%s",buf1); //从键盘输入buf1为xyz if(strcmp(buf1,"xyz")==0) prin...
#include
#include
main()
{
char buf[50];
int num;
buf1=fgets(buf,50,stdin); //stdin为标准输入
printf("%s",buf1); //从键盘输入buf1为xyz
if(strcmp(buf1,"xyz")==0)
printf("is xyz");
else
printf("is not xyz");
}
可得到的buf1和“xyz”不相等。请朋友们给予指点!
#include
main()
{
char buf[50];
int num;
buf1=fgets(buf,50,stdin); //stdin为标准输入
printf("%s",buf1); //从键盘输入buf1为xyz
if(strcmp(buf1,"xyz")==0)
printf("is xyz");
else
printf("is not xyz");
}
可得到的buf1和“xyz”不相等。请朋友们给予指点!
|
#include
#include
#include
int main()
{
char buf[50];
char *buf1;
buf1=fgets(buf,50,stdin); //stdin为标准输入
printf("%s ",buf1); //从键盘输入buf1为xyz
if(strcmp(buf1,"xyzn")==0)
printf("is xyzn");
else
printf("is not xyzn");
return 0;
}
fgets reads characters from the current stream position to and including the first newline character, to the end of the stream, or until the number of characters read is equal to n–1.
#include
#include
int main()
{
char buf[50];
char *buf1;
buf1=fgets(buf,50,stdin); //stdin为标准输入
printf("%s ",buf1); //从键盘输入buf1为xyz
if(strcmp(buf1,"xyzn")==0)
printf("is xyzn");
else
printf("is not xyzn");
return 0;
}
fgets reads characters from the current stream position to and including the first newline character, to the end of the stream, or until the number of characters read is equal to n–1.
|
楼上正解: fgets会包括尾部的一个n ,并在尾部添加一个...
|
right
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。