class foo {
int *p;
public:
foo() {
p = 0; *p = 0;
}
};
foo bar;
int main ( ) { return 0; }