Q:

Ruby program to pass an array to the user-defined function

0

In this program, we will create a user-defined function. Here we will pass an array as an argument and calculate the sum of all array elements and return the result.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to pass an array to the user-defined function is given below. The given program is compiled and executed successfully.

# Ruby program to pass an array to the 
# user define function

def MyFun(arr)
   sum=0;
   i=0;
   while i<arr.length
     sum = sum + arr[i];
     i=i + 1;
   end
   return sum;
end

arr = Array(1..5);   

print "Sum of array elements is: ",MyFun(arr);

Output:

Sum of array elements is: 15

Explanation:

In the above program, we created the function MyFun(). Here, we passed array as an argument and calculated the sum of array elements and return the sum of array elements and printed the result.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now