//linked list implementation
#include<stdio.h>
#include<stdlib.h>
struct node
{
int data;
struct node* link;
};
struct node* head;
void insert(int);
void print();
int main()
{
head=NULL;
int n,i,x;
printf("\nEnter the number of elements :");
scanf("%d",&n);
for(i=0;i<n;i++)
{
printf("\nEnter the element :");
scanf("%d",&x);
insert(x);
print();
}
}
void insert(int x)
{
struct node* temp=(node*)malloc(sizeof(struct node));
temp->data=x;
temp->link=head;
head=temp;
}
void print()
{
struct node* temp=head;
int i=0;
printf("\nThe list is ");
while(temp!=NULL)
{
printf("%d ",temp->data);
temp=temp->link;
}
printf("\n");
}
При составлении кода:Что не так с этим кодом c (реализация связанного списка)?
In function 'insert':
28:24: error: 'node' undeclared (first use in this function)
struct node* temp=(node*)malloc(sizeof(struct node));
^
28:24: note: each undeclared identifier is reported only once for each function it appears in
28:29: error: expected expression before ')' token
struct node* temp=(node*)malloc(sizeof(struct node));
^
'(node *)' должно быть '(struct node *)' Голосование закрывается как опечатка. – dasblinkenlight
'struct node *'? – Unimportant
Используйте 'typedef struct node {/ * ToDo - добавьте сюда здесь * /} узел' для менее типизации. – Bathsheba