// #include #include void main() { int i; for(i=0; i<=255; i++) { if(i!=26) cout << i << " - " << (char)i << "\n"; if(i!=0 && i%20==0) getch(); } }