Throw this program into a C++ Compiler. if you dont know how to do that properly, do a google search. #include #include using namespace std; void main() { char ch = '#'; int limit = 9000; int i; unsigned char ch2; for (i = 0; i <= limit; i++) for(ch2 = 0; ch2 < 255; ch2++) cout << "ASCII #" << int(ch2) << " = " << ch2;