Given a type Money that is a structured type with two int fields, dollars and cents declare an array monthlySales with 12 elements of type Money.
LANGUAGE: C++
CHALLENGE:
Given a type Money that is a structured type with two int fields, dollars and cents declare an array monthlySales with 12 elements of type Money.
SOLUTION:
Money monthlySales[12];