array of string in java <> code example
Example 1: how to declare string array in java
string[] abc=new string[]{"hai","hello"}
Example 2: arrays in java
int[] arr; // Declaration dataType can int, float etc.
arr = new int[N]; // Allocation N = 0 to 2,147,483,647.