We have introduced arrays in set 1 (Introduction to arrays in C).
In this post array properties in C are discussed.
1) In C, it is possible to have array of all types except void and functions. See this for details.
2) In C, array and pointer are different. They seem similar because array name gives address of first element and array elements are accessed using pointer arithmetic. See array vs pointer in C for details.
3) Arrays are always passed as pointer to functions. See this for details.
4) A character array initialized with double quoted string has last element as ‘