I'm writing a program where I need to modify letters by using numbers. Like test = 79 to make test = 'a'.
How do I make test equal decimal letters 160 to 255? Like an up-side-down question mark for example. Doing
Code:
cout << (int)'¿' << endl;
gives me -65, then if I try to make a char = -65 it will not display a ¿...
Dec# for ¿ is 191