I am trying to display characters based on their ASCII code, but after 127 display some kind of nonsense, what can this be connected with?
ubuntu 14.04 64 bit Geany
#include <iostream> using namespace std; int main(int argc, char **argv) { for(int i = 32; i < 256; ++i) cout << (char)i << " - " << i << endl; return 0; }