Programming Interview Question
Question: What the below func would return?
int Add()
{
int z = 0;
try
{
int x = 3;
int y = 5;
z = x + y;
return z;
}
finally
{
z = 65;
}
}
65
ReplyDeleteIt return 8
Delete