Hi! I am Iftekhar Ahmed.I am an undergraduate student of East West University of computer science & engineering department.I am a blogger & i love programming.I am here for helping beginners.
This class maintain a library card catalog entry.Have the class store a book's title,author,and the number of copies available. #include<iostream> using namespace std; class card { private: char booksTitle[50],author[50]; int av_copies; public: set_a() { cout<<"Enter the Books Title:" << endl; cin>> booksTitle; cout<<"Author:" << endl; cin>> author; cout<<"Available copies:" << endl; cin>> av_copies; } show() ...
Comments
Post a Comment