有大佬知道为什么do while循环里重复定义结构指针是可以的呢,还有给结构指正赋NUll是怎么回事,有啥好处
#include<stdio.h>#include<stdlib.h>
typedef struct _node{
int value;
struct _node *next;
}Node;
int main(int argc,char const *argv[]){
Node *head=NULL;
int number;
do {
scanf("%d",&number);
if(number!=-1){
Node *p=(Node *)malloc(sizeof(Node));
p->value=number;
p->next=NULL;
Node *last=head;
if(last){
while(last->next){
last=last->next
}
last->next=p;
}
else {
head=p;
}
}while(number!=-1);
return 0;
}