The source code to convert an integer into the string is given below. The given program is compiled and executed successfully.
// Rust program to convert an integer
// into a string
fn main()
{
let mut intVar:i32 = 108;
let mut strVar=intVar.to_string();
println!("String is : {}",strVar);
}
Output:
String is : 108
Explanation:
Here, we created a variable intVar of i32 type. Then we assigned the value of intVar variable into &str variable using to_string() function. After that, we printed the result.
Program/Source Code:
The source code to convert an integer into the string is given below. The given program is compiled and executed successfully.
Output:
Explanation:
Here, we created a variable intVar of i32 type. Then we assigned the value of intVar variable into &str variable using to_string() function. After that, we printed the result.
need an explanation for this answer? contact us directly to get an explanation for this answer