我今天学习了(自学)C语言结构的基础知识,并编写了这个简单的代码。它正在编译没有任何错误。我知道成功编译并不能保证软件没有错误。执行时,它仅扫描两个结构变量的输入并给出错误显示。为了简单起见,我选择了一个字符来存储书名。我无法找出这里的错误。你能找到一个吗?
#include<stdio.h>
int main(void)
{
struct book
{ char name;
float price;
int pages;
};
struct book b[3];
int i;
for (i = 0; i <= 2; i++){
printf("\nEnter name, price and pages ");
scanf("%c %f %i", &b[i].name, &b[i].price, &b[i].pages);
}
for (i = 0; i <= 2; i++)
printf("\n%c %f %i",b[i].name, b[i].price, b[i].pages);
return 0;
}