I don't understand fully how lists in c work
So I’m trying to add an element to the beginning of a list. The function prepend_list is at line 27. I’m trying to make it in two different ways, one returns a list back and one is a void function. #include "base.h" #include "string.h" typedef struct Node Node; struct Node{ int value; Node* next; };… Read More I don't understand fully how lists in c work