#include int main( int argc, char *argv[]) { int c; int i; c = ' '; while (c < 'z') { printf("%3d %02x %c \n", c, c, c); c = c + 1; } }