WAP TO MERGE TWO ARRAY INTO SINGLE DIMENSION ARRAY
import java.util.*; class mergeapc { public static void main(String args[]) { int n,i,m,p; Scanner sc=new Scanner(System.in); System.out.println("Enter the no.of element for A"); n=sc.nextInt(); System.out.println("Enter the no.of element FOR B"); m=sc.nextInt(); System.out.println("Enter the no.of element FOR C"); p=sc.nextInt(); int a[]=new int[n]; int b[]=new int[m]; int c[]=new int[p]; System.out.println("Enter the array element for 1st"); ...