Answer:
Attached below is the code
Step-by-step explanation:
using namespace std;
struct Money
{
int dollars;
int cents;
};
int main()
{
struct Money monthlySales[12];
struct Money yearlySales = { 0,0};
for(inti=0; i<12; i++)
{
monthlySales[i].dollars = 0.0;
monthlySales[i].cents = 0.0;
}
for(int i=0; i<12; i++)
{
yearlySales.dollars = yearlySales.dollars + monthlySales[i].dollars;
yearlySales.cents = yearlySales.cents +monthlySales[i].cents;
}
return 0;
}