typdef struct Node0{
int Addr_Val;
Node0* Next;
}Node;
Node* Head = (Node*) malloc(sizeof(Node));
Head->Next = NULL; // I suppose when I go to my add link function I just do Head->Addr_Val = numinput and Head->Next = nextnode?
Node* Tail;
Tail->Next=NULL;
I don't really know where to go from here as I don't understand how you can keep creating nodes without using realloc of a struct array, which wouldn't be a linked list from what I've been told. All the snippes I've seen have predefined nodes or I'm not undertstanding the code properly.http://www.cprogramm...l/lesson15.html
http://cslibrary.sta...dListBasics.pdf
All look to me like they have predefined nodes.













