Contact: aviboots(AT)netvision.net.il
39,919 questions
51,852 answers
573 users
using System; class Program { static void Main() { string s = "c# c++ java c python"; string[] words = s.Split(); foreach(String str in words) Console.WriteLine(str); } } /* run: c# c++ java c python */