using System; public class Exercise8 { public static void Main() { string str1; int i,l; Console.Write("\n\nCopy one string into another string :\n"); Console.Write("-----------------------------------------\n"); Console.Write("Input the string : "); str1 = Console.ReadLine(); l=str1.Length; string[] str2=new string[l]; /* Copies string1 to string2 character by character */ i=0; while(i