Question: Write C++ statements that do the following: Define an enum type, birdType, with the values PEACOCK, SPARROW, CANARY, PARROT, PENGUIN, OSTRICH, EAGLE, CARDINAL, and HUMMINGBIRD.
Write C++ statements that do the following:
Define an enum type, birdType, with the values PEACOCK, SPARROW, CANARY, PARROT, PENGUIN, OSTRICH, EAGLE, CARDINAL, and HUMMINGBIRD.
Declare a variable bird of the type birdType.
Assign CANARY to the variable bird.
Advance bird to the next value in the list.
Decrement bird to the previous value in the list.
Output the value of the variable bird.
Input value in the variable bird.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
