Computer Science, asked by diyashree, 10 months ago

int func2(int w) {
return w*3
}
int func1 (int a, int b) {
int n = a+b;
return 2 + func2 (n) ;
}
int start () {
int z = 4;
return func1 (z, 1) -3;
}
What is the return value of the call start () ?


please answer me guys​

Answers

Answered by cool5164
0

Answer:

I have don't understand this question properly

Answered by monishroy1998
0

Answer:

14

Explanation:

just break the function calls and you will get the answer

Similar questions