#include <stdio.h> int main() { int i; for (i = 48; i <= 127; i++) { printf("%c\t%d\n", i, i); } return 0; }