Showing all posts tagged "Why Data Structures Over Arrays"
Important points to remember about arrays
An array is a sequence of contiguous memory cells, all of the same size.
The array name is an alias for a const-typed pointer to the first cell of the array.
Array doesn't initializes it's values,during definition int a[10];
for(int i=0;i<10;i++)
p...
Posted on February 1st, 2019