我认为我理解C但是我很难为练习编写一个简单的附加代码。当我运行此代码时,int a每次都为0。但是,int b工作正常。这里的想法是程序的输入是8 + 9.为什么sscanf不能识别变量a?
#include <stdio.h>
#include <stdlib.h>
int plus(int a, int b){
return (a + b);
}
int main()
{
int a, b;
char input[100], op;
printf("...I am ZOLO...\n");
printf("...The most vercatile calculator known to man...\n");
printf("...Please enter your query:");
fgets(input, sizeof(input), stdin);
sscanf(input, "%d %s %d", &a, &op, &b);
printf("%d + %d = %d...", a, b, plus(a, b));
return 0;
}
答案 0 :(得分:1)
op
之前(以内部存储器顺序)分配a
,并且您的机器使用little-endian字节顺序,以便'\0'
之后存储的op
字符会清除先前存储到a
的值。