Login


Lost your password?

Don't have an account ?
Register (It's FREE) ×
  


Shop
CPP All : Enumerated Types
Concept Notes and Resources

Enumeration is basically a way to represent a possible list of number values for a variable in friendly names or symbol forms. For e.g. if  you have to represent rainbow colours with 0 to 6 you can always write them more meaningfully as enum rainbow { RED, ORANGE, YELLOW, GREEN, BLUE, INDIGO, VIOLET }; This […]

Concept Learning Code Sheets
Simple use of enumerated data type #4554 

Understanding use of enumerated data type with a simple example.

Enumerated data type with given set of values #4565 

Understanding use of enumerated data type with user given set of values and not by compiler default values.

Finding size of enumerated data type #4567 

Understanding how enum datatype is stored in memory



Quizzes

Concept Notes:1  Code Sheets:3  Quizzes:1
Back