home *** CD-ROM | disk | FTP | other *** search
- // \EXAMPLES\EX0327.CPP
-
- //--------------------------------------------------------------
- // files in this example:
- // EX0327.CPP this file
- // %F,15,EX0327M.CPP%EX0327M.CPP Microsoft Visual C++ version
- //--------------------------------------------------------------
- #include <iostream.h>
-
- void main() {
- enum direction {north, south, east, west = 99};
- direction current_dir = north;
- cout << "The value of north is " << current_dir << endl;
- cout << "The value of south is " << south << endl;
- cout << "The value of east is " << east << endl;
- cout << "The value of west is " << west << endl;
-
- }
-