I am trying to solve the question below, but I do not understand it very well. Do I need to use overloading, although it doesn't say that? How could I get started?
Create a class that imitates part of functionality of the basic data typ int. Call the class Int. The only data in this class is int variable. Include member functions to initilize an Int to 0, to initilize it to an int value, to display it and to add two int values.
Write a program that excersices this class by creating two initilized and one uninitilized Int values, adding these two initilized values and placing the response in the uninitilized value and then displaying this result.