#include<stdio.h>

/*  Program wypisuje znaki ASCII */

int main()
{
    int i=0;

    printf("znak  dec   hex   oct\n-----------------------\n");
    while(i <= 127)
    {
        printf("%2c %5d %5x %5o\n", i, i, i, i);
        i++;
    }
}
