My Subject Blog

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;

};

Comments

Most Visited Post

C Program to Find Largest Odd Number from Array

C Program for Runtime Memory Allocation for Table of Integers

Followers