From 9f87e4db61778398054c53d11e2294445332bc6a Mon Sep 17 00:00:00 2001
From: Raisa Ghosh <71429098+RaisaGhosh@users.noreply.github.com>
Date: Sun, 2 Oct 2022 18:25:08 +0530
Subject: [PATCH] Update add-element-at-any-position-in-a-singly-linked-list.md
---
.../add-element-at-any-position-in-a-singly-linked-list.md | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/docs/en/Lists/add-element-at-any-position-in-a-singly-linked-list.md b/docs/en/Lists/add-element-at-any-position-in-a-singly-linked-list.md
index 8aac4922..901c84f0 100644
--- a/docs/en/Lists/add-element-at-any-position-in-a-singly-linked-list.md
+++ b/docs/en/Lists/add-element-at-any-position-in-a-singly-linked-list.md
@@ -96,13 +96,16 @@ Now, let us create the three-nod linked list as an example. One way to create th
pointer->next->next->info : 2
pointer->next->next->next : pointer to next node.
+
+
+ - A sample/example
+
## Implementation
- [C](../../../algorithms/C/linked-lists/Add-Element-at-Nth-Position-SinglyLinkedList.c)
-
## Video URL