MacBook Air 13. OSX ElCapitan system. I compile the code through the terminal
#include <stdio.h> #include <locale.h> int main(void) { unsigned char c; for (c = 32; c <= 255; c++) { printf("%c",c); } return 0; } At the exit I get
!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????`. that is, characters up to 127 codes from the table are displayed. And then everything is replaced with questions. How to use extended ASCII table in the range of 128-255. The table was used by reference http://www.ascii-code.com/ . Thanks in advance for your reply.