Answer the question
In order to leave comments, you need to log in
How does the struct function work in C?
In principle, I understand how this function works, but I encountered a "misunderstanding" when creating a Linked list, here is the code:
typedef struct node
{
int n;
struct node* next;
}
node;
struct node* next;
node number;
number.n = 3;
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question