InterviewSolution
Saved Bookmarks
| 1. |
What Are Enumerations? |
|
Answer» An enumeration is a data type, used to DECLARE variable that store LIST of NAMES. It is ACT like a database, which will store list of items in the variable. example: enum shapes{TRIANGLE, rectangle,... An enumeration is a data type, used to declare variable that store list of names. It is act like a database, which will store list of items in the variable. example: enum shapes{triangle, rectangle,... |
|