Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #1
- #include <stdio.h>
- void main(void) {
- int fuck;
- int fuck2[1];
- printf("%p \n", &fuck);
- printf("%p \n", fuck2);
- }
- $ gcc -O0 test.c -o test && ./test
- > 0x7fff5469793c
- > 0x7fff54697930
- #2
- #include <stdio.h>
- void main(void) {
- int fuck2[1];
- int fuck;
- printf("%p \n", &fuck);
- printf("%p \n", fuck2);
- }
- $ gcc -O0 test.c -o test && ./test
- > 0x7fff213d57cc
- > 0x7fff213d57c0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement