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
0
Answer:
I have don't understand this question properly
Answered by
0
Answer:
14
Explanation:
just break the function calls and you will get the answer
Similar questions