Write a function POPBOOK( ) in C++ to perform delete operation from a dynamic stack, which contains Bno and Title. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Write a function POPBOOK( ) in C++ to perform delete operation from a dynamic stack, which contains Bno and Title.

struct NODE { int Bno; char Title[20]; NODE *Link; };

8th Dec 2018, 7:10 AM
Utkarsh Singh
Utkarsh Singh - avatar
1 Answer
+ 4
Very interesting assignment! We love to see the code along with your question because we are programmers! We love to do it if we see your best shot because we need motivation! We love to appreciate your effort because we know how hard it can be to formulate a solution!
8th Dec 2018, 7:15 AM
Babak
Babak - avatar