Java-Array copy
package ArrayMethod;
public class Copy {
public static void main(String[] args) {
int[] a = { 1, 2, 3};
int[] copy = a;
for(int i=0;i<copy.length;i++)
{
System.out.println(copy[i]);
}
}
}
<?php // Start the session session_start(); ?> <!DOCTYPE html> <html> <head> <link rel=&q...
No comments:
Post a Comment