Home »
Rust »
Rust Programs
Rust program to create a simple array
Rust | Array Example: Write a program to create a simple array.
Submitted by Nidhi, on October 19, 2021
Problem Solution:
In this program, we will create an array of integer elements and then we will print the array.
Program/Source Code:
The source code to create a simple array is given below. The given program is compiled and executed successfully.
// Rust program to create a simple array
fn main(){
let intArr:[i32;5] = [5,10,15,20,25];
println!("Array elements: \n{:?}",intArr);
}
Output:
Array elements:
[5, 10, 15, 20, 25]
Explanation:
Here, we created an array of 5 integer elements and printed them.
Rust Arrays Programs »