// FILE: DEnumDrv.cpp // DRIVER FOR FUNCTION "write_color" #include #include "DispEnum.cpp" // Functions Used... // DISPLAYS THE VALUE OF this_color int write_color (color); // IN: color to be printed as string //driver (This is not included in the text) int main () { //Local Data... color this_color = blue; // Print the color cout << "The Color is "; write_color(this_color); return 0; }