Declare an int constant MonthsInDecade whose value is the value of the constant MonthsInYear (already declared ) multiplied by 10.

LANGUAGE: C++

CHALLENGE:

Declare an int constant MonthsInDecade whose value is the value of the constant MonthsInYear (already declared ) multiplied by 10.

SOLUTION:



const int MonthsInDecade = MonthsInYear * 10;