Question: #include #include #include using namespace std; const int NAME _ SIZE = 0 ; const int NUM _ PLAYERS = 1 0 ; struct PlayerInfo

#include
#include
#include
using namespace std;
const int NAME_SIZE =0;
const int NUM_PLAYERS=10;
struct PlayerInfo
{
char lastName[NAME_SIZE];
char firstName[NAME_SIZE];
int birthMonth;
int birthDay;
int birthYear;
};
//function prototypes
void getData(PlayerInfo)[];
void makeCopy(const PlayerInfo[],PlayerInfo[]);
void showData(const PlayerInfo[]);
void bubbleSort(PlayerInfo[]);
void swapp(PlayerInfo &, PlayerInfo &)
int searchPlayer (const PlayerInfo[],char[]);
void findPlayer (PlayerInfo ); players[]);

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!