From 78a14964fd9fe79e0790cc254525feb2af8b765e Mon Sep 17 00:00:00 2001 From: Himanshu Deori Date: Fri, 25 Oct 2019 19:21:34 +0530 Subject: [PATCH] nice exp --- circ_singly_ll.cpp | 1 + 1 file changed, 1 insertion(+) 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