In C Program
This program will store the roster and rating information for asoccer team.
There will be 3 pieces of information about each player:
Name: string, 1-100 characters (nickname or first name only, NOSPACES)
Jersey Number: integer, 1-99 (these must be unique)
Rating: double, 0.0-100.0
You must create a struct called “playData” to hold all theinformation defined above for a single player.
You must use an array of your structs to to store thisinformation. You will need an array capable of holding theinformation for 10 players.
You should initialize the struct elements of your array withappropriate values.
——————————————————————————–
You need to implement the following 2 functions to validate theuser’s
OR
OR