Home »
Rust »
Rust Programs
Rust program to create a simple vector
Rust | Vector Example: Write a program to create a simple vector.
Last Updated : October 23, 2021
Problem Statement
In this program, we will create a simple vector that contains 5 integer elements then we will print the vector elements.
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.
Rust Vectors Programs »
Advertisement
Advertisement