Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- {
- int *p1 = NULL, *p2;
- printf("%p", p1); //points to NULL
- printf("%p", p2); //point nowhere, should crash but CB ignores it.
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement