130k views
0 votes
Given a variable, mets, of type Team-- a structured type with a field named pitcher (a string), write a statement that assigns "Acosta" to that field (pitcher) of that variable (mets).

User Keisha W
by
5.8k points

1 Answer

4 votes

Answer:

mets.pitcher = "Acosta";

User Bas Jansen
by
6.2k points