Basic of Array
Definition of Array
An array is a collection of variable of the same data type that is referred a common name. Each element in array is associated with an index number and occupies contiguous memory location.
Tips : To store multiple value of same data type you can create array.
Array की परिà¤à¤¾à¤·à¤¾ :
array कई सारे वेरिà¤à¤¬à¤² का समूह है, जिसमे à¤à¤• से अधिक वैलà¥à¤¯à¥‚ को सà¥à¤Ÿà¥‹à¤° किया जा सकता है , और वह à¤à¤• नाम से पहचाना जाता है | सà¤à¥€ वैलà¥à¤¯à¥‚ à¤à¤• इंडेकà¥à¤¸ से जà¥à¥œà¥‡ होते है और इसको à¤à¤•à¤¾à¤‚तर (लगातार) मेमोरी की आवसà¥à¤¯à¤•à¤¤à¤¾ होती है |
Characteristics of an array:
- It is a collection of similar (homogeneous) data type of element.
- The array index number always starts with 0(zero) so the last index is size-1.
- It always stored in contiguous memory location.
- The size and dimension of array is fixed.
- It is a linear data structure that stores the element in a sequence.