Please help to debug my code(need to hand-in by tmr)
https://code.sololearn.com/cA10A25A4A3a The code is a singly linked list which is a type of data structure that is made up of nodes that are created using self referential structures. Each of these nodes contains two parts, namely the data and the reference to the next list node. Only the reference to the first list node is required to access the whole linked list. This is known as the head. The last node in the list points to nothing so it stores NULL. Make options to let user choose the functions, including insertion, deletion, traverse and display. In insertion function, user needs to input the value and the location. My code can execute normally with less than three nodes. But problems happen when there is three nodes. Please help, this is my homework for tmr.