Q:

Rust program to convert an integer into character

belongs to collection: Rust Basic Programs

0

In this program, we will create an integer variable then we will assign the value of the integer variable by converting it into a character variable using the "as" keyword.

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 convert an integer into a character is given below. The given program is compiled and executed successfully.

// Rust program to convert an 
// integer into character

fn main() 
{
    let mut intVar:u8  = 65;
    let mut charVar:char;
    
    charVar=intVar as char;
    println!("Character is : {}",charVar);
}

Output:

Character is : A

Explanation:

Here, we created a variable intVar of the u8 type. Then we assigned the value of the intVar variable into the char variable using the "as" keyword. After that, we printed the result.

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 convert an unsigned integer into a... >>
<< Rust program to convert an integer number into a f...