PLease help i am stuck on this question in c create the foll
PLease help i am stuck on this question.
in c++ create the following fields.
private int fields for day, month, and year
private constant static array field for days of the week
private constant static array field for the names of the month
private field for the day of the week.
Solution
class Date
{
private:
int day;
int month;
int year;
const static string daysOfWeek[7];
const static string nameOfMonth[12];
public:
};
