Il quiz è apparso in variante ovviamente C++ alla pagina 830 nel suo ormai dimenticato libro "Programming Applications for Microsoft Windows"
int FuncaDoodleDoo()
{
int temp = 0;
while(temp < 10)
{
try
{
if(temp == 2)
continue;
if(temp == 3)
break;
}
finally
{
temp++;
}
temp++;
}
temp += 10;
return temp;
}
e chiede: "Can you determine what the following function returns?".
Mi raccomando, nei commenti non rispondete solo con sì e no :-)