What is the return value of the call start () ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 2

What is the return value of the call start () ?

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; }

12th Aug 2020, 6:00 AM
Divya Jeyashree
Divya Jeyashree - avatar
3 Answers
+ 3
Please tag a specific language, don't write a sentence, question or plea in the thread's tags : )
12th Aug 2020, 6:16 AM
Ipang
+ 1
I think the answer is 14 In start, func1(4,1) in func1 n=5 return 2 + func2(5) In func2, func2 will return 15 to func1 now func1 will return 17 to start and start will return 14 to main function. Like Ipang said,use appropriate tag before posting any question: https://www.sololearn.com/discuss/1316935/?ref=app https://www.sololearn.com/post/75089/?ref=app https://www.sololearn.com/post/52212/?ref=app
12th Aug 2020, 6:45 AM
The future is now thanks to science
The future is now thanks to science - avatar
0
func1(4, 1) -3; [ =>func1(4,1)=2+func2(n); n=4+1] 2+ func2(5) - 3; [ => func2(5) = 5*3 =15 ] 2 + 15 - 3 =14
12th Aug 2020, 1:13 PM
Jayakrishna 🇮🇳