belongs to collection: Rust Vectors Programs
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.
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Program/Source Code:
The source code to create a simple vector is given below. The given program is compiled and executed successfully.
Output:
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