Saturday 22 September 2012

Program of displaying the ASCII values and its characters between 0 to 218


class Program
{
    static void Main()
    {
      for(int i=0; i<=218;System.Console.Write((char)i+"\t"+i+" "), ++i);
    }
}


No comments:

Post a Comment