Ruby program to push an array into another array

Ruby Example: Write a program to push an array into another array.
Submitted by Nidhi, on January 10, 2022

Problem Solution:

In this program, we will create two arrays of integers with few elements. Then we will push an array into another array using the push() method.

Program/Source Code:

The source code to push an array into another array is given below. The given program is compiled and executed successfully.

# Ruby program to push an array 
# into another array

arr1 = [101,102,103,104,105];
arr2 = [106,107,108,109,110];

arr1.push(arr2);

print "Array elements: \n";

i=0;

while(i<arr1.length())
    print arr1[i],"\n";
    i = i + 1;
end

Output:

Array elements: 
101
102
103
104
105
[106, 107, 108, 109, 110]

Explanation:

In the above program, we created two arrays arr1, arr2 with few elements. Then we pushed arr2 into arr1 using the push() method. After that, we printed the elements of arr1.

Ruby Arrays Programs »




Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.