Q. Which of the following is a valid way to define a function in Rust?
β
Correct Answer: (C)
fn my_func() {}
Explanation: Rust uses the 'fn' keyword to define functions.