Question: Given the following definitions: struct name _ t { string first _ name; string middle _ name; string last _ name; } struct player _

Given the following definitions:
struct name_t {
string first_name;
string middle_name;
string last_name;
}
struct player_t {
name_t name;
int jersey_num;
string position:
bool games_played[82];
}
struct hockey_team {
string name;
player_t players[20]
char game_record[82];
}
hockey_team gknights;
What is the data type of the following:
gknights.players[10].games_played[35];
Group of answer choices
bool
array of bool
player_t
array of player_t

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!