Which idiom can be used to concatenate the strings 'a', 'b', 'c'?rustlet a = 'a'.to_string();let b = 'b'.to_string();let c = 'c'.to_string();

🎲 Try a Random Question  |  Total Questions in Quiz: 36  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Rust (Programming Language) Quiz — practice the complete quiz, review flashcards, or try a random question.

Rust (Programming Language) MCQs For LinkedIn Skill Assessments.


Which idiom can be used to concatenate the strings 'a', 'b', 'c'?<br>rust<br>let a = 'a'.to_string();<br>let b = 'b'.to_string();<br>let c = 'c'.to_string();<br>