List Example
•
For a list of videos, we might start with a
struct defining what a video is:
struct video {
char title[100];
char category[5];
int quantity;
};