What Is an Array? #

An array is a homogenous sequence of elements. Being a compound type, it is used when the collection of values of the same type are to be stored in a single variable. In Rust, an array can only be of a fixed length. Like all other languages, each element in the array is assigned an index. By default, the first element is always at index 0.

Create a free account to access the full course.

By signing up, you agree to Educative's Terms of Service and Privacy Policy