using System;
public class Program
{
public static void Main(string[] args)
{
string str = "C# is a general purpose high level programming language";
string[] words = str.Split(' ');
foreach (var word in words) {
Console.WriteLine(word);
}
}
}
/*
run:
C#
is
a
general
purpose
high
level
programming
language
*/