I tried to print extended ASCII characters :
http://www.theasciicode.com.ar/
But were all these characters printed as a question mark on a white background ? .
I use the following loop to print these characters:
for (i = 0; i <= 30; i++) printf("%c", 201);
Question: Can I print those extended ASCII characters or not? Or maybe there is a special library for these characters?
Linux OS Ubuntu 13.04, Code :: Blocks 12.11 IDE.
c character ascii extended-ascii
yulian
source share