+ 1
Could you explain about Ascll I don't know any thing about this code!!!
3 Answers
+ 1
https://en.wikipedia.org/wiki/ASCII
ASCII, abbreviated from American Standard Code for Information Interchange, is a character encoding standard for electronic communication. ASCII codes represent text in computers, telecommunications equipment, and other devices. Most modern character-encoding schemes are based on ASCII, although they support many additional characters.
ASCII is the traditional name for the encoding system; the Internet Assigned Numbers Authority (IANA) prefers the updated name US-ASCII, which clarifies that this system was developed in the US and based on the typographical symbols predominantly in use there.
ASCII is one of a 1963 List of IEEE milestones.
+ 1
thanks for your rapidly replay.
and how can use it? when I want to write a program in. C
+ 1
You're more than welcome, Dina.
Here are some additional resources/examples for you. Based upon your tag, are you referring to C#?
https://www.dotnetperls.com/ascii-table
http://www.softwareandfinance.com/CSharp/PrintASCII.html
https://msdn.microsoft.com/en-us/library/ee276763(v=bts.10).aspx
------ EXAMPLE -------
https://code.sololearn.com/cYDDja3C3V4D/#cs
// I did not write this. All rights reserved to:
// http://www.softwareandfinance.com/CSharp/PrintASCII.html
using System;
using System.Collections.Generic;
using System.Text;
namespace PrintASCII
{
class PrintASCII
{
static void Main(string[] args)
{
for (int i = 0; i <= 255; i++)
{
System.Console.WriteLine("{0} = {1}", i, (char)i);
}
}
}
}