From 2240948a74f0481797ce6fe47e52536e936594d2 Mon Sep 17 00:00:00 2001 From: jhakesh32 <33264055+jhakesh32@users.noreply.github.com> Date: Tue, 31 Oct 2017 23:39:15 +0530 Subject: [PATCH] Update Queue Using Linked List.cpp --- Queue Using Linked List.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Queue Using Linked List.cpp b/Queue Using Linked List.cpp index acf32ebd503..98d5f29cab6 100644 --- a/Queue Using Linked List.cpp +++ b/Queue Using Linked List.cpp @@ -1,6 +1,6 @@ #include using namespace std; - +//make quene using a linked list struct node { int val;