Question: it should be in C language Write a C function to calculate the number of items in a stack. Assume you are given the following

it should be in C language
Write a C function to calculate the number of items in a stack. Assume you are given the following functions for working with a stack. Your solution must preserve the items and their order in the stack. (C3-PLO2) (10 marks) void push(struct node ** top, struct element new_data); struct element pop (struct node ** top); int isEmpty (struct node ** top)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
