Skip to content

Instantly share code, notes, and snippets.

@xiaq
Created May 26, 2016 21:08
Show Gist options
  • Select an option

  • Save xiaq/e468cab13801e7a95a3447fa3dac2d41 to your computer and use it in GitHub Desktop.

Select an option

Save xiaq/e468cab13801e7a95a3447fa3dac2d41 to your computer and use it in GitHub Desktop.
#include <cstdio>
struct S {
const char *name = "none";
int i = 0;
};
int main() {
S s;
printf("%s %d\n", s.name, s.i);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment