I want to create an application where user would input a number and the program will throw back a character to the user.
Edit: How about vice versa, changing a ascii
To get ascii to a number, you would just cast your char value into an integer.
char ascii = 'a' int value = (int)ascii
Variable value will now have 97 which corresponds to the value of that ascii character
(Use this link for reference) http://www.asciitable.com/index/asciifull.gif