#include <stdio.h> int main() { int i; for(i = 0; i < 254; i++) { if (i == 26) { continue; } printf(" |%d : %c| \n",i,i); } return 0; }