Q:

Rust program to create different types of variables

belongs to collection: Rust Basic Programs

0

In this program, we will create different types of variables and print them on the screen.

Note: By default, the variables are immutable, we cannot change the variables.

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 different types of variables is given below. The given program is compiled and executed successfully.

// Rust program to create 
// different types of variables

fn main() {
    let var1:i8     =10;        //8-bit signed integer 
    let var2:u16    =20;        //16-bit unsigned integer 
    let var3:f32    =30.12;     //32-bit floating point number
    let var4:bool   =true;      //Boolean value
    let var5:char   ='A';       //Character
    
    println!("Var1: {}",var1);
    println!("var2: {}",var2);
    println!("var3: {}",var3);
    println!("Var4: {}",var4);
    println!("Var5: {}",var5);
}

Output:

Var1: 10
var2: 20
var3: 30.12
Var4: true
Var5: A

Explanation:

In the main() function, we created 5 different types of variables using the let 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 different types of variable... >>
<< Rust program to print Hello World...