Question: Evaluation_Linked_List Write a C program with create(), display() and search() function to create a linked list where each node contains the roll number and name
Evaluation_Linked_List Write a C program with create(), display() and search() function to create a linked list where each node contains the roll number and name of each person. The search function will search for a data item input by the user and it will display the position at which the searched item is present in the list.
Sample Input:
5 [ Number of nodes in the list] 1 Akash [ Value of each memeber of each node] 2 Samaira 3 Ridhi 4 Manish 5 Julie
3 Ridhi [Search Item]
Sample Output: The List elements are: 1 Akash--->2 Samaira--->3 Ridhi--->4 Manish--->5 Julie---> item 3 Ridhi found at location 3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
