1 2 3 4 5 6 7 8
#include <stdio.h> void main() { for (int i = 32; i < 128; i++) { printf("%x: %c ", i, i); if (i % 8 == 7) printf("\n"); } }