Created
January 12, 2018 20:49
-
-
Save pepyakin/75264c0329a0ea95429f45ead65c7210 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a; | |
struct b h; | |
struct b { | |
struct { | |
struct { | |
int c | |
} d | |
} e | |
} f(struct b *i) { | |
for (; a < i->e.d.c; a++) { | |
int g = 0; | |
for (; g < i->e.d.c; g++) | |
; | |
} | |
} | |
main() { | |
h.e.d.c = 235; | |
f(&h); | |
exit(0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment