Answers for "copy one array to another"

5

java copy array

int[] a = {1,2,3,4,5};
int[] b = Arrays.copyOf(a, a.length);
Posted by: Guest on April-25-2020
4

java copy array

int[] a = {1, 2, 3};      
int[] b = a.clone();
Posted by: Guest on September-30-2020
0

how to copy array in java

// method 
public static int [] copyArray(int [] arr){
      int [] copyArr = new int[arr.length];
      for (int i = 0; i < copyArr.length; i++){
            copyArr[i] = arr[i];
       }
      return copyArr;
}

// Arrays. method 
int[] copyCat = Arrays.copyOf(arr, arr.length);

// System 
System.arraycopy(x,0,y,0,5); // 5 is array's length 

// clone 
y = x.clone();
Posted by: Guest on August-01-2020
0

copy one array to another

#include <stdio.h>

int main() {
   int original[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0};
   int copied[10];
   int loop;
   
   for(loop = 0; loop < 10; loop++) {
      copied[loop] = original[loop];
   }
   printf("original -> copied \n");
   
   for(loop = 0; loop < 10; loop++) {
      printf("   %2d        %2d\n", original[loop], copied[loop]);
   }

   return 0;
}
Posted by: Guest on May-26-2021

Code answers related to "copy one array to another"

Browse Popular Code Answers by Language