#include <stdio.h> #include <conio.h> #include <windows.h> unsigned char c; int main() { SetConsoleTitle("CODIGO ASCII"); for(c=0; c<255; c++) { printf("%d %c \n", c, c); if(c%24==0) Sleep(500); } getch(); return 0; }