Arrays in C++
What are Arrays ?
Array is basically list of similar kind of elements are stored collectively together.
Format of array :
data-types name-of-array[length-of-array]
int b[10]
After writing int b[10] we specified we have to save 10 integer collective...
aayusranjan.hashnode.dev7 min read