Q:

Rust program to find the length of the vector

belongs to collection: Rust Vectors Programs

0

In this program, we will create a simple vector that contains 5 integer elements then we will find the length of the vector.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to find the length of the vector is given below. The given program is compiled and executed successfully.

// Rust program to find the length of vector

fn main() {
   let mut v = vec![10,20,30,40,50];
 
   println!("Vector elements:\n{:?}", v);
   println!("Length of Vector: {}",v.len());
}

Output:

Vector elements:
[10, 20, 30, 40, 50]
Length of Vector: 5

Explanation:

Here, we created a vector that contains integer elements, and then we found the length of the vector using the len() function and printed the result.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Rust program to push or insert an item into vector... >>
<< Rust program to create a simple vector...