Arrays - Basics in Java
Arrays :
What is an array?
Array is a datastructure which is a collection of datatypes, primitives basically similar elements in it.
What is the Syntax of array?
datatype[] variable_name = new datatype[size];
int[] rnos = new int[5]
//or
int[]...
sreekarshodhan.hashnode.dev3 min read