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. Doinggives me -65, then if I try to make a char = -65 it will not display a ¿...Code:cout << (int)'¿' << endl;
Dec# for ¿ is 191




Reply With Quote