Array Example
This Program illustrates how use declare arrays of built in type.Arrays are contiguous block of memory refrences by their name.
/*
http://www.ProbCOMP.com
This Program illustrates how use declare arrays of built in type.
Arrays are contiguous block of memory refrences by their name.
*/
import java.util.Arrays;
public class UsingBuiltInTypeArrays{
public static void main(String args[])
{
int[] array1;
array1 = new int[100];
}
}
Download Program


