

#include <stdio.h>
#include <string.h>

int main(int argc, char **argv)
{
    int i;
    for (i = 0; i < argc; i++) {
	printf("%s %d\n", argv[i], atoi(argv[i]));
    }

}

int prompt()
{
    int i;
    char s[100];
    while (1) {
	printf("\n Continue [y/n]? ");
	scanf("%s", s);
	printf("%s\n", s);
	if (strcmp(s, "n") == 0) break;
    }
    return 0;
}

int list_ascii()
{
    unsigned char i;
    for (i = 32; i < 128; i++) {
	printf("%d\t%c\t", i, i);
	if (i % 6 == 0) printf("\n");
    }
    printf("\n");
    return 0;
}
