#include void main(void) { cout << " the following is an ASCII table \n"; for (int i = 0; i < 128; i ++) { cout << i << " " << (char)i << " "; if (i % 20 == 0) cout << endl; } cout << endl; }