A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

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