Question: c language COP 3502 D. LINKED LIST 4+4=8 1. Suppose we have a stack implemented as a linked list. Anything added will go to the
COP 3502 D. LINKED LIST 4+4=8 1. Suppose we have a stack implemented as a linked list. Anything added will go to the head of the list. The nodes of the queue have the following structure; typedef struct nod int info; struct nod *next; node; Write a function to insert a node in the linked list that followes the above description. Assume that the head is global variable and was initialized to NULL in the main function before creating the list. int stackLinked(int info) Write a function to delete the largest item from a descending order sorte inked list. The node structure is same as the above pode Alco assume
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
