Skip to content

Instantly share code, notes, and snippets.

@computermouth
Last active March 19, 2017 20:32
Show Gist options
  • Save computermouth/5e4a73946769b61af670baeed81032a0 to your computer and use it in GitHub Desktop.
Save computermouth/5e4a73946769b61af670baeed81032a0 to your computer and use it in GitHub Desktop.
#include <stdio.h>
typedef struct {
char * section;
char * entries[];
} some_t;
int main()
{
static some_t some = { .section = "system", .entries = { "x_res", "y_res"} };
printf("%s\n", some.entries[1]);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment