Created
April 3, 2013 13:29
-
-
Save ifukazoo/5301218 to your computer and use it in GitHub Desktop.
enumの便利な使い方
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int main(int argc, char const* argv[]) | |
{ | |
enum { INIT, CONFIRM, SUCCESS, FAILURE } state; | |
if (argc < 2) { | |
state = FAILURE; | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment