Home »
Rust »
Rust Programs
Rust program to perform the POP operation
Rust | Vector Example: Write a program to perform the POP operation.
Submitted by Nidhi, on October 23, 2021
Problem Solution:
In this program, we will create a vector to store the name of countries then we will perform PUSH and POP operations.
Program/Source Code:
The source code to perform the POP operation is given below. The given program is compiled and executed successfully.
// Rust program to perform POP operation
fn main() {
let mut countries = vec!["INDIA","USA"];
countries.push("UK");
countries.push("CANADA");
countries.push("ENGLAND");
println!("Countries are:\n{:?}", countries);
countries.pop();
countries.pop();
println!("\nCountries after POP operation:\n{:?}", countries);
}
Output:
Countries are:
["INDIA", "USA", "UK", "CANADA", "ENGLAND"]
Countries after POP operation:
["INDIA", "USA", "UK"]
Explanation:
Here, we created a vector to store the name of countries, and then we performed a PUSH operation to add the item into the vector and performed the POP operation to remove the item from the vector.
Rust Vectors Programs »