#include #include using namespace std; struct student { string name; int examScores[5]; }; int main() { const int SIZE = 20; student cis67[SIZE]; cis67[0].name = "Sally"; cis67[1].name = "jack"; cout << cis67[0].name << " " << cis67[1].name << endl; return 0; }