/**
*
*/
import java.lang.Syste m;
/**
* @author 72hosh1mst
*
*/
public class arrayofcopy {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
char [] a1={'a','b','c' ,'d','e','f'};
char [] b1={'x','y','z' ,'u','v'};
System.arraycop y(a1,1,b1,2,3);...
Leave a comment: