Guest User

Untitled

a guest
May 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. const char *var;
  2.  
  3. struct foo {
  4. const char *test;
  5. };
  6.  
  7. struct foo foo = {
  8. /* .test = "foobar", */
  9. .test = var
  10. };
  11.  
  12. int main(void) {
  13. return 0;
  14. }
Add Comment
Please, Sign In to add comment