What does this function return ?
function (vrati_broj) {
!temp a,,i2
!temp b,,i2
!temp c,,i2
!temp i,,i2
tmp.b=5
tmp.a=2
tmp.c = tmp.b - tmp.a
if (tmp.c == 2) {
tmp.c = 5
} else {
tmp.b = 7
}
for (tmp.i=0; tmp.i < tmp.c; tmp.i=tmp.i+1) {
while (tmp.i>4) {
if (tmp.i<7) {
return tmp.i
}
}
}
return tmp.i
}



Reply With Quote

