- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Java Program to Concatenate Two Arrays
One way of doing it is, create an array of length equals to the sum of lengths of the two arrays and, add elements of both arrays to it one by one.
Example
public class HelloWorld { public static void main(String[] args) { int[]a = {1,2,3,4}; int[]b = {4,16,1,2,3,22}; int[]c = new int[a.length+b.length]; int count = 0; for(int i = 0; i<a.length; i++) { c[i] = a[i]; count++; } for(int j = 0;j<b.length;j++) { c[count++] = b[j]; } for(int i = 0;i<c.length;i++) System.out.print(c[i]+" "); } }
Output
1 2 3 4 4 16 1 2 3 22
- Related Articles
- How to concatenate two arrays in java?
- How can I concatenate two arrays in java
- How to concatenate Two Arrays in C#?
- Java Program to compare Two Java short Arrays
- Java Program to compare two Java char Arrays
- Java Program to compare Two Java float Arrays
- The easiest way to concatenate two arrays in PHP?
- Java Program to compare two Boolean Arrays
- Java Program to compare two Byte Arrays
- Java Program to Concatenate String.
- C++ Program to Concatenate Two Strings
- How to concatenate two strings using Java?
- Java Program to Add Two Matrix Using Multi-Dimensional Arrays
- Python Program to Concatenate Two Dictionaries Into One
- Java Program to Find the closest pair from two sorted arrays

Advertisements