найти ошибку Язык си
#include
struct list
{
int n;
list*next;
}
list*f_el(int n)
{
list*t=new list;
t=>n=n;
t=>next=0;
return t;
}
void ins(list*h, int N)
{
list*p; list*c;
p=h; c=h->next;
while (c!=0)
{
if (c->n next;
}
list*t=f_el(N);
t->next=p->next;
p->next=t;
}
void pr(list*h)
{
for (h->next;h!=0;h=h->next)
printf("%d\n",h->n);
}
int main ()
{
list*h=new list;
h=>n=0;
h=>next=0;
int n;
printf ("Vvedite znachenie\n");
scanf("%d",&n);
while(n!=0)
{
ins(h,n);
printf("Vvesite 4islo\n");
scanf("%d",&n);
}
pr(h->next);
return 0;
}