Q:

Rust program to create mutable variables

belongs to collection: Rust Basic Programs

0

Here, we will create mutable variables using the mut keyword. By default Rust variables are immutable, we cannot change their values.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

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.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Rust Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Rust program to create constants... >>
<< Rust program to demonstrate the escape sequences...