Assignment 13
Needs the array size as a paramter.
Use a menu-driven structure.
Doubly Subscripted Arrays
How would you represent data in a table?
E.g. the data for three students and 5 exams:
90 90 90 90 90
80 80 80 80 80
100 20 50 80 90
int score[3] [5]
double.cpp
Note the use of typedef. Why?