C# PROGRAM TO PRINT ASCII CHARACTERS
C# program to print ASCII Characters
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
using System; namespace AsciiCharacters { class Program { static void Main(string[] args) { int a = 1, i; for (i = 0; i < 250; i++) //prints ascii characters from 1 to 250 Console.Write((char)i+"t"); Console.ReadKey(); } } } |
Output :