Tuesday, July 29, 2014

Converting ASCII to char and Char to ASCII

ASCII to Char
char char-value= (char) asciiValue;

Char to ASCII
int asciiValue = (int) char-Value

No comments:

Post a Comment