Rust program to pass an array in a function

Rust | Function Example: Write an example to demonstrate the pass an array in a function.
Submitted by Nidhi, on October 06, 2021

Problem Solution:

In this program, we will create a user-defined function PrintArray() to accept an array as an argument and print array elements.

Program/Source Code:

The source code to pass an array in a function is given below. The given program is compiled and executed successfully.

// Rust program to pass an array in a function

fn PrintArray(arr: &mut [i32]) {
    println!("Array Elements: ");
    for i in 0..5 {
        println!("{0} ", arr[i]);
    }
}

fn main() {
    let mut arr:[i32;5] = [10,20,30,40,50];
    
    PrintArray(&mut arr);
}

Output:

Array Elements: 
10 
20 
30 
40 
50

Explanation:

In the above program, we created two functions PrintArray() and main(). The PrintArray() function is a user-defined function that accepts an array of integers and array elements on the console screen.

In the main() function, we created an array of integers with 5 elements. Then we called PrintArray() function and printed the array elements.

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