simple/chartab/chartab.c

11 lines
181 B
C
Raw Permalink Normal View History

#include <stdio.h>
1997-04-12 17:51:54 +02:00
int main (int argc, char **argv) {
int i;
for (i = 0; i < 256; i++) {
printf ("%x %d %o %c\t", i, i, i, i);
if (i % 4 == 3) printf ("\n");
1997-04-12 17:51:54 +02:00
}
return 0;
}