以下是C scanf函式的原型
函式原型:int scanf ( const char * format, ... );
引数说明:%[*][width][modifiers]type
%[*][宽度][长度修饰]资料型态
传回值:成功配对之引数数目,失败时将传回 EOF
请问下面这两支程式作对比
两支程式执行后在命令提示字符下输入相同格式
ss(整数) (整数)
第一支程式scanf函式回传为TURE
可是第二支程式的第二个scanf函式回传值却是FALSE
是什么原因?
是因为scanf格式输入错误?
如果是编译怎么会成功呢??
感谢!!!
(1).
#include <stdio.h>
#include <stdlib.h>
int main ()
{
int b,c;
printf("请输入整数:");
c=scanf("ss%d",&b);
printf("\n\nscanf的回传值为%d\n\n",c);
printf("\n\n你的输入为%d\n\n",b);
system("pause");
return 0;
}
(2).
#include <stdio.h>
#include <stdlib.h>
int main ()
{
int a,b,c;
printf("请输入整数:");
scanf("%d",&a);
printf("\n\n你的输入为%d\n\n",a);
printf("请输入整数:");
c=scanf("ss%d",&b);
printf("\n\n第二个scanf的回传值为%d",c);
printf("\n\n你的输入为%d\n\n",b);
system("pause");
return 0;
}