Home »
Rust »
Rust Programs
Rust program to create a variable with binary value and print it in decimal number
Here, we are going to learn how to create a variable with binary value and print it in decimal number in Rust programming language?
Submitted by Nidhi, on September 21, 2021
Problem Solution:
Here, we will create a 32-bit signed integer variable with a binary value and print the corresponding decimal number.
Program/Source Code:
The source code to create a variable with binary value and print it in a decimal number is given below. The given program is compiled and executed successfully.
// Rust program to create a variable with binary value
// and print it in decimal number
fn main() {
let mut num:i32=0b10101101;
println!("Decimal number: {}",num);
}
Output:
Decimal number: 173
Explanation:
Here, we created a variable num initialized with a binary number. Then we printed the corresponding decimal number.
Rust Basic Programs »