2nd Constructor
list::list(int size) {
my_list = new video [size];
video_list_size = size;
num_of_videos = 0;
}
•
Notice, unlike arrays of characters, we don’t
need to add one for the terminating nul!