Skip to content

Instantly share code, notes, and snippets.

@H2CO3
Created September 13, 2015 19:44
Show Gist options
  • Select an option

  • Save H2CO3/611dd82f02ece83b14ad to your computer and use it in GitHub Desktop.

Select an option

Save H2CO3/611dd82f02ece83b14ad to your computer and use it in GitHub Desktop.
typedef struct {
int x;
} Foo;
int main()
{
int n = 1;
int VLA_is_not_in_cplusplus[n];
Foo f = { .x = 42 };
f = (Foo){ 42 };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment