Skip to content

Instantly share code, notes, and snippets.

@dlisboa
Created November 16, 2013 16:27
Show Gist options
  • Save dlisboa/7502161 to your computer and use it in GitHub Desktop.
Save dlisboa/7502161 to your computer and use it in GitHub Desktop.
struct bar {
char* name;
int age;
};
struct bar bars[] = {
{"Narciso", 25},
{"Salsa", 25}
}
#define NARCISO 0
#define SALSA 1
#define value(a) bars[a].value
value(NARCISO);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment