int *fishy() { int x = 0; return &x; } int y = 0; int *notfishy() { return &y; } int *alsonotfishy() { static int z = 0; return &z; } int *evenlessfishy() { return (int *)0; }