03E-2016
CBSE12D-2016
Problem Statement - 03C-2015
Write the definition of a member function PUSH() in C++, to add a new book in a dynamic stack of BOOKS considering the following code is already included in the program:
struct BOOKS { char ISBN[20], TITLE[80]; BOOKS *Link; }; class STACK { BOOKS *Top; public: STACK() {Top=NULL;} void PUSH(); void POP(); ~STACK(); };
Solution
CSKC| Created: 8-Jan-2019 | Updated: 20-Feb-2019|CBSE12A-2015