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
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.
Program/Source Code:
The source code to push an array into another array is given below. The given program is compiled and executed successfully.
Output:
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.
need an explanation for this answer? contact us directly to get an explanation for this answer