fork(1) download
  1. #include <iostream>
  2.  
  3. enum rank : char {
  4. first = '1', second = '2', third = '3'
  5. };
  6.  
  7. int main()
  8. {
  9. // other code ...
  10. std::cout << rank::third;
  11. // other code ...
  12. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
51