Q:

Rust program to create a simple 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 print the vector elements.

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 create a simple vector is given below. The given program is compiled and executed successfully.

// Rust program to create a 
// simple vector

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

Output:

Vector elements:
[10, 20, 30, 40, 50]

Explanation:

Here, we created a vector that contains integer elements, and then we printed vector elements.

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

total answers (1)

Rust program to find the length of the vector... >>