public int foo(int x)
{
int i;
try
{
i=5;
return i;
}
finally
{
i=x;
}
}
What does foo() return?
Thursday, January 17, 2008
Subscribe to:
Posts (Atom)
Brain-teasers and technical questions that interviewers use to challenge your logic and problem solving skills.