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++; }