SabirSazzad

Enum test

Feb 23rd, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main ()
  4. {
  5.     enum color { red, green=5, blue } c;
  6.     c = blue;
  7.     cout << blue;
  8.  
  9.     return 0;
  10. }
Add Comment
Please, Sign In to add comment