I am following a C tutorial for a Linked List and I am building the node. However, I do not understand why the * operator comes at the end of the node variable versus in front of it. I thought pointers came in front of the word. So which is the pointer? "next" or "node"?
struct node {
int value;
// next pointer, should point to the next node in the list
struct node* next; // pointer of structure type
};
Thank you.