What is the benefit of return in calculation ? Please give code example in c++ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What is the benefit of return in calculation ? Please give code example in c++

Return in calculation

9th Jul 2019, 2:23 AM
The unknown 321
The unknown 321 - avatar
11 Answers
+ 2
It returns the the values with you have done something
9th Jul 2019, 2:42 AM
Muhammad Rashid
Muhammad Rashid - avatar
+ 2
This is a difference between imperative and procedural programming style. Imperative means that you just write the commands in the program in specific order and the computer executes them line by line from begin to end. Procedural means that you organize some parts of your program into 'functions' which you write only once, but can use several times in your program with different parameters. This is really useful if the function is just a little bit more complicated than adding two numbers.
9th Jul 2019, 5:11 AM
Tibor Santa
Tibor Santa - avatar
+ 2
The examples at the link above have nothing to do with functions and "return": I suggested it just to show you the difference between a global (defined out of a function) and a local (defined inside a function) variable. So, just to recapitulate, a function is like a subprogram inside the main program. You can do everything without using any function, or you can call a function without using "return" (for example just for printing). But when you need to communicate the function results to the caller, the common method is using "return". There are also other methods anyway: modifying the values of global variables, or assigning input arguments passed by reference. Programming is freedom...
10th Jul 2019, 5:29 AM
Bilbo Baggins
Bilbo Baggins - avatar
+ 1
Can you give me code example please ?
9th Jul 2019, 2:43 AM
The unknown 321
The unknown 321 - avatar
+ 1
int sum(int a, int b) { return a + b; }
9th Jul 2019, 3:15 AM
Franky BrainBox
Franky BrainBox - avatar
+ 1
We can make it like this. int a,b; a+b This what confuses me because instead of saying "return a+b "we can say a+b or int sum=a+b I'm still confused. Why should we use the return in this ?
9th Jul 2019, 3:18 AM
The unknown 321
The unknown 321 - avatar
+ 1
"This what confuses me because instead of saying "return a+b "we can say a+b or int sum=a+b" The unknown 321 - saying a+b is not ok, because you do not assign your sum, and your value is lost - saying int sum=a+b could be ok if sum is defined out of your function, but in that case the function is said to have collateral effects. On the other hand, if sum is defined inside your function, the scope is local and the value is lost on exit So return is like a temp assignment (assembly registry EAX), which pass the value to the caller.
9th Jul 2019, 6:18 AM
Bilbo Baggins
Bilbo Baggins - avatar
0
"Saying int sum=a+b could be ok if sum is defined out of your function" what do you mean by this ?
9th Jul 2019, 1:57 PM
The unknown 321
The unknown 321 - avatar
9th Jul 2019, 4:00 PM
Bilbo Baggins
Bilbo Baggins - avatar
0
This was good but I didn't see they returned any result ? Which means they didn't write return sum;
9th Jul 2019, 4:07 PM
The unknown 321
The unknown 321 - avatar
0
Why didn't they add return in there ?
10th Jul 2019, 1:36 AM
The unknown 321
The unknown 321 - avatar