Contact: aviboots(AT)netvision.net.il
40,891 questions
53,304 answers
573 users
fn main() { let s = "c rust java c# python c++"; let second_word = s.split_whitespace().nth(1).unwrap(); println!("The second word is: {}", second_word); } /* run: The second word is: rust */