Answers for "how to represent all members of array in one variable in java"

33

how to declare array java

int intArray[];    //declaring array
intArray = new int[20];  // allocating memory to array
//OR
int[] intArray = new int[20]; // combining both statements in one
Posted by: Guest on February-21-2020

Code answers related to "how to represent all members of array in one variable in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language