17
Mar
Display character from ASCII value in C++
I don’t know whether this is useful or merely entertaining, but it is quite simple to display the character representation of any ASCII number in C++ We will use the static_cast function to perform this operation, converting from int to char. Let me show you this sample program that does just that (Looping until you [...]
Continue Reading →