Leave a Reply 2

Your email address will not be published. Required fields are marked *


skywalker

skywalker

The image link is dead.

pojo

pojo

Question:
public static void main(String[] args) {
int arr1[]={2,4,6,8};
int arr2[]={1,3,5,7,9};
arr2=arr1;
for(int e2:arr2){
System.out.println(e2);
}

}
====> D