Rust program to create a closure function to return the addition of given numbers
belongs to collection: Rust Iterator and Closure Programs
All Answers
total answers (1)
belongs to collection: Rust Iterator and Closure Programs
total answers (1)
Program/Source Code:
The source code to create a closure function to return the addition of given numbers is given below. The given program is compiled and executed on UBUNTU 18.04 successfully.
Output:
Explanation:
Here, we created two integer variables num1, num2 initialized with 10, 21 respectively. Then we created a closure function sum with parameters "n1" and "n2". In the closure, we returned the addition of given parameters to the calling function.
need an explanation for this answer? contact us directly to get an explanation for this answer