03E-2016
CBSE12D-2016
Problem Statement - 03C
Write the definition of a member function Pop() in C++, to delete a book from a dynamic stack of TEXTBOOKS considering the following code is already included in the program.
struct TEXTBOOKS { char ISBN[20]; char TITLE[80]; TEXTBOOKS *Link; }; class STACK { TEXTBOOKS *Top; public: STACK() {Top=NULL;} void Push(); void Pop(); ~STACK(); };
Solution
CSKC| Created: 5-Jan-2019 | Updated: 1-Apr-2019|CBSE12D-2015