diff --git a/circ_singly_ll.cpp b/circ_singly_ll.cpp index f80f7cc..ea5a604 100644 --- a/circ_singly_ll.cpp +++ b/circ_singly_ll.cpp @@ -80,6 +80,7 @@ ALGORITHM FOR INSERTING AT THE BEGINNING: node *insert_beg(node *start, int value) { // Creating a new node + // new is the syntax to give memory dynamicaly node *new_node = new node; // Storing the data and assigning