Showing posts with label (D) Array in C. Show all posts
Showing posts with label (D) Array in C. Show all posts

Array's in C Exercises and Solutions

Array is collection of similar data types. You can store group of data of same data types using array. In array different data types elements are not allowed that simply means if we declare an integer array then we can store only integer type of elements in it.


There are two types of arrays in C:

1. One dimensional array.

2. Multi-dimensional array:

  • Two dimensional array.
  • Three dimensional array.
  • Four dimensional array etc...