Skip to content

Instantly share code, notes, and snippets.

@khajavi
Created May 24, 2013 11:28
Show Gist options
  • Save khajavi/5642846 to your computer and use it in GitHub Desktop.
Save khajavi/5642846 to your computer and use it in GitHub Desktop.
enum example in c
#include <stdio.h>
enum {
SHOW,
HIDE,
COVERED,
};
int main() {
printf("%d", SHOW);
printf("%d", HIDE);
printf("%d", COVERED);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment