Please need Help with part A. Programming in C
Part 3: Stacks and Queues Part A: Stack Create a Stack struct that is a wrapper for your linked list You should implement the following functions that take a stack: o o void push (Stack * stack, int value) . int pop(Stack stack) Prompt the user to input 5 integers, and use the stack to reverse the integers Print the result to the
OR
OR