The source code to create mutable variables is given below. The given program is compiled and executed successfully.
// Rust program to create mutable variables
fn main() {
let mut var1=10; //32-bit signed integer
let mut var2=30.12; //32-bit floating point number
let mut var3=true; //Boolean value
let mut var4='A'; //Character
var1 = 20;
var2 = 30.24;
var3 = false;
var4 = 'B';
println!("Var1: {}",var1);
println!("var2: {}",var2);
println!("var3: {}",var3);
println!("Var4: {}",var4);
}
Output:
Var1: 20
var2: 30.24
var3: false
Var4: B
Explanation:
In the main() function, we created 4 mutable variables using the mut keyword. Then we printed the value of variables using println!() macro on the console screen.
Program/Source Code:
The source code to create mutable variables is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the main() function, we created 4 mutable variables using the mut keyword. Then we printed the value of variables using println!() macro on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer