Rust program to create a slice from an integer array

Rust | Slice Example: Write a program to create a slice from an integer array.
Submitted by Nidhi, on October 18, 2021

Problem Solution:

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.

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.

Rust Slices 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.