Array Data Structure
An array consists of a sequence of similar data items that are stored sequentially in RAM.
The below code snippet is a sample array with three integer values.
int[] samplearray = {1, 6, 5};
Usually index of an array starts with Zero
We can access ...
ashoksubbiah.in2 min read