TYPES OF ARRAYS ONE DIMENSIONAL ARRAY TWO DIMENSIONAL ARRAY MULTI-DIMENSIONAL ARRAY WRITTEN BY: SYED ANS ALI
ARRAY Define: Array is a collection of data item that is accessed by using a common name it is known as Array Syntax function type name[subscript];
Why we are using array? Arrays a kind of data structure . An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type. Instead of declaring individual variables, such as number0, number1, ..., and number99, you declare one array variable such as numbers and use numbers[0], numbers[1], and ..., numbers[99] to represent individual variables. A specific element in an array is accessed by an index
Types of Array There are three types of array One Dimensional Array Two Dimensional Array Multi Dimensional Array
One Dimensional Array An array that contain only one subscript it is known as one dimensional array Program :
Output
Two Dimensional Array An array that contain two subscript is called Two dimensional array 2-d array is like a table
Program
output
Multi Dimensional Array An array that contain more than two subscript is known as Multi Dimensional array Program