//All this is made with the knowledge of C++ till class 11, so it might seem to be a bit lengthy... #include<iostream> #include<stdlib.h> #include<stdio.h> struct bat{ char name[26]; int run; int ball; float strrate; int flag; }bats[11]; struct bowl{ char name[26]; int run; int overs; float econ; int wicket; }bowls[5]; using namespace std; void title(void) { system("cls"); cout<<"\n\t\tThe CricBoard\n"; cout<<"\t\t_____________\n\n"; } void benter(bat B[]); void blenter(bowl B[]); void bdisplay(void); void bldisplay(void); void bedit(int); void bwedit(int); int main() { punarvichaar: int ch,_ch2; title(); cout<<"Choose from the below two options (Enter 1 or 2):" <<"\n\n1. Enter the Batting Statistics first" <<"\n\n2. Enter the Bowling Statistics first\n\n"; cin>>ch; if(ch==1) { benter(bats); blenter(bowls); } e...