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