|
Sep 05
|
By casting the integer ASCII value to a char.
int asciiValue = 65; char ch = (char) asciiValue;
|
|
By casting the integer ASCII value to a char. int asciiValue = 65; char ch = (char) asciiValue;
By simply casting the int value to a char. int asciiValue = 65; char ch = (char) asciiValue; |
|
Recent Comments