nRemember,
anything you can do in a struct you can do in a class.
–It is up to your personal style how many structures
versus classes you use to solve a problem.
nBenefit:
Using structures for simple “groupings” is compatible with C
ästruct
video {
–char title[100];
–char category[5];
–int quantity;
–};