Exam (elaborations)
Chapter 2 COSC-1436 (100% Verified)
- Course
- Institution
Declare an int constant , MonthsInYear, whose value is 12. correct answers const int MonthsInYear=12; Declare an int constant MonthsInDecade whose value is the value of the constant MonthsInYear (already declared ) multiplied by 10. correct answers const int MonthsInDecade=MonthsInYear*10; De...
[Show more]