#include void main () { for (int i=0; i<256 ; i++ ) { cout << '\t' << i << '\t' << char(i) ; if (i%8==0) cout << '\n'; } cout << endl; }