I am writing some code to print overlapping ASCII character objects and I want some to be invisible instead of the typical " " white space character. Would this solve it?
cout << char(255);
In the most common extended 8-bit ASCII tables 255 is the 'ÿ' symbol (Latin small letter y with diaeresis). The space character is decimal value 32. So what you are searching for is probably:
cout << char(32);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With