1/*ASCII acronym for American Standard Code for Information Interchange.
2It is a 7-bit character set contains 128 (0 to 127) characters.
3It represents the numerical value of a character.
4For example, the ASCII value of A is 65.*/
5char a = 65, b = 66, c = 67;
6System.out.println(a);
7System.out.println(b);
8System.out.println(c);
9
10/* this is how you type ASCII values in java */
1char a = 65, b = 66, c = 67;
2System.out.println(a);
3System.out.println(b);
4System.out.println(c);
5
6/* this is how you type ASCII values in java */