Computer Science, asked by anshikarajpoot2824, 3 months ago

how to creat a array​

Answers

Answered by Anonymous
4

Obtaining an array is a two-step process. First, you must declare a variable of the desired array type. Second, you must allocate the memory that will hold the array, using new, and assign it to the array variable. Thus, in Java all arrays are dynamically allocated.

Answered by Artev
0

Arrays are created with name then equal sign and then square brackets which have elements

this is of python

Similar questions