Q:

Rust program to create a slice from an integer array

belongs to collection: Rust Slices Programs

0

In this program, we will create an array of integers and then we will create a slice from an integer array based on the specified index and print the result.

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 slice from an integer array is given below. The given program is compiled and executed successfully.

// Rust program to create a slice 
// from an integer array

fn main() {
   let intArr = [15,23,18,48,50];
   let slice = &intArr[2..5]; 
   
   println!("Slice: {:?}",slice);
}

Output:

Slice: [18, 48, 50]

Explanation:

Here, we created an integer array intArr. After that, we sliced the array of integers from the specified index and printed the result.

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

total answers (1)

Rust program to create a mutable slice from an int... >>
<< Rust program to create a slice from the string...