Enumerated type (or enumeration) in C++ is a user defined data type that contains fixed set of constants. It can be used for days of the week (SUNDAY, MONDAY, TUESDAY,...
Storage classes provide information about a variable’s location and visibility. They decide the portion of the program within which the variables are recognized. There are broadly four storage classes in...