| ascii.c | |
|---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #include<stdio.h>
main() {
int i, j; // stevca for zanke
// izpis glave tabele
printf(" ");
for(i=0; i<8; i++) printf("%3d ", i);
printf("\n --------------------------------\n");
// izpis tabele (11 vrstic po 8 znakov)
for(i=4; i<=15; i++) {
printf("%2d |", i);
for(j=0; j<=7; j++)
printf("%3c ", i*8 + j);
printf("\n");
}
}
|