One Dimensional Array in C
The array which is used to represent and store data in a linear form is called as Single or One Dimensional Array. To declare One Dimensional Array in C, the general syntax is as follows: <data-type> <Array-name> [<Array-Size>]; The Array-Size must be an integer constant greater than zero and data-type can be any valid C … Read more