I'm new to C++ and I'm trying to do something that should be pretty basic.
I have a small loop in C++ that just displays a sequence of numbers and I would like to convert these numbers into specific ASCII characters. Something like this:
for (int k = 0; k < 16; k++) {
display(65+k);
}
And the result should look like this:
ABCDEFGH... etc
Any ideas?
Thanks!