我收到错误 scanf:在读取以下结构的“信息”值时未链接浮点格式。
struct node
{
float info; struct node *next;
}*start;
在主()
void main()
{
struct node *temp;
temp = (struct node*)malloc(sizeof(struct node));
printf("enter data = ");
scanf("%f",&temp->info);
}
它没有读取该 scanf 的任何值并退出程序。
如何解决这个问题?