What is Array? Array is collection of more than one element of same type at a same memory location. Declaration Syntax: Data Type arrayname[size]; Here, size represent number elements stored in Array. This size is maximum so, user can enter equal or less elements but nor more than elements. rn[0] rn[3] rn[2] rn[1] All Elements […]