Part2 Exercise: [10 marks] Update the previous example to build a linked list that contains integers as follows: ¹ T 1-
Posted: Fri Jul 01, 2022 5:51 am
Part2 Exercise: [10 marks] Update the previous example to build a linked list that contains integers as follows: ¹ T 1- Use the push function to add (8, 14, 16, 2, 20,45) to the linked list 2- Print the list 3- [5 marks] Write a c function that searches for a given value in the linked list. Enter the number you want to search in the List 2 element found 4- [5 marks]Write a c function that returns the maximum value in the list the Maximum number in the list is 45 5- [5 marks]Write a c function that counts the occurrence of the given value Enter the number you want to check for occurence in the List 2 the number 2 appears 2 times in the list