using System;
public class Program
{
public static void Main()
string s= "Hello World";
Console.WriteLine("Number of charcters in string={0}" , s.length);
for(int i=0;i<s.Length;i++) //this itterates through the string untill the ength has ben reached
Console.WriteLine(s[i]);
}
Console.ReadLine;