Showing all posts tagged "C Arrays"
Searching problems
Search: As already known array elements are accessed using indices ,the process of finding the index of given element ,given element value is called a search operation.
Types of searching:Linear searchbinary searchTri-nary search e.t.cIn Method in pyth...
Posted on February 2nd, 2019
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