2nd Apr 2017, 10:24 AM
Dhananjay Panage
Dhananjay Panage - avatar
2 Réponses
+ 8
func(2) returns 4. So, func(func(2)) = func(4) func(4) returns 16. So, func(func(2)) = func(4) = 16.
2nd Apr 2017, 11:46 AM
Krishna Teja Yeluripati
Krishna Teja Yeluripati - avatar
+ 2
Because you have a function within a function, so after the first function has run, the result of that function will be inputted. So after the first function, the answer return is 4 (2x2). Then 4 is inputted and 16 is the answer (4x4).
2nd Apr 2017, 10:27 AM
Hassie
Hassie - avatar