Answers for "array definition with declaration 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 "array definition with declaration in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language