Concept Flow - Insert at Beginning Head Insert
Create new node
Set new_node->next = head
Update head = new_node
New node is now the first node in list
This flow shows how a new node is created and placed at the start of the linked list by adjusting pointers.
