Rust program to create a simple vector

Rust | Vector Example: Write a program to create a simple vector.
Submitted by Nidhi, on October 23, 2021

Problem Solution:

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
ADVERTISEMENT


Top MCQs

Comments and Discussions!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.