Write a statement to declare an integer array of 20 elements
Answers
Answered by
0
Answer:
public class Array
{
public static void main ()
{
int arr[] = new int[20];
}
}
Mark me as brainliest if this helped you.
Similar questions