Q. Which of the following is a valid way to print to the console in Rust?
β
Correct Answer: (C)
println!("Hello")
Explanation: Rust uses the macro 'println!' to print to the console.