Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Unfortunately I am not C++ developer, but a few days ago, one of C++ team asked next question:

There is simple code

int a( int *p0 ) {
        int p;
        if( p0 ) return p0 > &p;
        return a(&p);
}

int main() {
        puts( a(0) ? "y" : "n" );
}

What result will be and how many times method a will be called ?

Can some one explain me how it will work and answer to him question, because it is very interesting ? Thanks

share|improve this question
2  
Why don't you run it and find out? – Oli Charlesworth Jun 10 '12 at 11:44
2  
I somehow doubt this is defined/specified. – Cat Plus Plus Jun 10 '12 at 11:44

closed as not a real question by Oli Charlesworth, Cat Plus Plus, Shahbaz, Tudor, rubenvb Jun 10 '12 at 11:49

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 5 down vote accepted

Comparing pointers using > is unspecified if they are not part of the same array.

So there is no actual answer, although you can assume if the stack grows down if( p0 ) return p0 > &p; will be true, otherwise false.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.