#include <stdio.h>

void main (void) {
  int i, j;
  char c;
  
  for (i = 32; i < 48; i++) {
    for (j = 0; j < 6; j++) {
      c = i + 16 * j;
      printf ("%3d %c   ", c, c);
    }
    printf ("\n");
  }
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: