Introduction - If you have any usage issues, please Google them yourself
This assignment asks student to write a program with a class called “Date” in order to realize the following requirements: The class should contain three data members namely denoting the year, the 3-letter abbreviation of month and the data. Beside the basic fundamental requirements. Additionally, the program should involve operator overloading. For instance, the assignment operator “=” is aimed to assign the value of one Data object to the other. Comparator operator “>” “<” and “==” are initialized to compare two dates. Also, operator “++” is aimed to change date value to the next date.