Questions with numerical answers and no options. No negative marks for these questions.

Recent questions tagged numerical-answers

1 votes
1 answer
1
Consider the following function:int arc(int i, int j){if(i<2) return j+2;else if(j<2) return arc(i-1, 1);else return arc(i-1, arc(i, j-2));}The value returned by arc(2, 6...