Question: Given the following definitions: struct name _ t { string first _ name; string middle _ name; string last _ name; } struct player _
Given the following definitions:
struct namet
string firstname;
string middlename;
string lastname;
struct playert
namet name;
int jerseynum;
string position:
bool gamesplayed;
struct hockeyteam
string name;
playert players
char gamerecord;
hockeyteam gknights;
What is the data type of the following:
gknights.playersgamesplayed;
Group of answer choices
bool
array of bool
playert
array of playert
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
