List Example
•
For a list of videos data type:
class list {
public:
list();
int add (const video &);
int remove (char title[]);
int display_all();
private:
video my_list[CONST_SIZE];
//for now...
int num_of_videos;
};