#include <iostream> int main() { using std::cout; enum States { opened, closed, parked = 8, crashed, dumped }; States state = dumped; cout << dumped << std::endl; return 0; }
Login in to like
Login in to comment
or Read more about C++ Quizzes
Login in to like
Login in to comment