Answer to Exercise 4-4, page 79 Solution by Bob Wightman Add commands to print the top element of the stack without popping, to duplicate it, and to swap the top two elements. Add a command to clear the stack. #include #include #include #include #define MAXOP 100 #define NUMBER 0 #define TRUE 1 #define FALSE 0 /* This programme is a basic calculator. Extra cases have been added to: 1. Show the t..