Embed presentation
Download to read offline




![60 70 80 90 100
array[0] array[1] array[2] array[3] array[4]
Size of the array =5
Int array[5]={60,70,80,90,100}](https://image.slidesharecdn.com/array-210303091557/85/A-wonderful-tutorial-about-an-Array-5-320.jpg)
![20 25 28 34 37
Int age[5] = { 20,25,28,34,37 }
age[0] age[1] age[2] age[3] age[4]](https://image.slidesharecdn.com/array-210303091557/85/A-wonderful-tutorial-about-an-Array-6-320.jpg)
![An array is a group of contiguous memory
locations that all have the same name and type.
To refer to a particular location or element in the
array, we specify the name of the array and the
position number of the element to which we
refer.
Int array [ 4] = [10, 20, 30, 40]](https://image.slidesharecdn.com/array-210303091557/85/A-wonderful-tutorial-about-an-Array-7-320.jpg)


An array is a collection of data elements of the same type that are stored and accessed sequentially using a common name. Arrays in C programming store a fixed number of elements of the same data type. Elements in an array are accessed using an index number that refers to the position or location of the element in the array.




![60 70 80 90 100
array[0] array[1] array[2] array[3] array[4]
Size of the array =5
Int array[5]={60,70,80,90,100}](https://image.slidesharecdn.com/array-210303091557/85/A-wonderful-tutorial-about-an-Array-5-320.jpg)
![20 25 28 34 37
Int age[5] = { 20,25,28,34,37 }
age[0] age[1] age[2] age[3] age[4]](https://image.slidesharecdn.com/array-210303091557/85/A-wonderful-tutorial-about-an-Array-6-320.jpg)
![An array is a group of contiguous memory
locations that all have the same name and type.
To refer to a particular location or element in the
array, we specify the name of the array and the
position number of the element to which we
refer.
Int array [ 4] = [10, 20, 30, 40]](https://image.slidesharecdn.com/array-210303091557/85/A-wonderful-tutorial-about-an-Array-7-320.jpg)
