C Program to define structure called Cricket
/*
Define a structure called cricket that will describe the following information:
a. Player name
b. Team name
c. Batting average
*/
struct cricket
{
char player_name[20];
char team_name[20];
float batting_average;
};
Define a structure called cricket that will describe the following information:
a. Player name
b. Team name
c. Batting average
*/
struct cricket
{
char player_name[20];
char team_name[20];
float batting_average;
};
Comments
Post a Comment