Find a Smallest Number Using Array
Find a Smallest Number Using Array
INTRODUCTION:
What is an array?
In computer science, an array is a data structure
consisting of a collection of elements (values or
variables), of same memory size, each identified
by at least one array index or key. An array is
stored such that the position of each element can
be computed from its index tuple by a
mathematical formula. The simplest type of data
structure is a linear array, also called one-
dimensional array.
For example:
In array numbers are stored in linear manner,
that is they are either stored in ascending order
or in descending order.
But in most of the cases the number in respected
array are stored in ascending order
ABSTRACT: