From 863a78be7279926b52fc625a4ded74ed77c7c0da Mon Sep 17 00:00:00 2001 From: afzalraza92 <49157635+afzalraza92@users.noreply.github.com> Date: Mon, 21 Oct 2019 10:24:27 +0530 Subject: [PATCH] Update Linked List.c --- Linked List.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Linked List.c b/Linked List.c index dc4e1e5..07c0f15 100644 --- a/Linked List.c +++ b/Linked List.c @@ -229,7 +229,7 @@ void search(Node **p) if(temp->info==data) { flag=1; - printf("Found at %d\n",i); + printf("\nFound at %d\n",i); } i++; }