This commit is contained in:
Le Stagiaire
2024-11-19 15:11:05 +01:00
parent f56d985cad
commit 838f7415fb
7 changed files with 148 additions and 3 deletions

View File

@ -13,10 +13,10 @@ int main(void) {
system("cls");
printf_s("\t\t\tAffichage de la table ASCII\n");
for (int i = 15; i < 255; i++) {
printf_s("\t%c : %3i\t", char(i), i);
if (i % 6 == 0) {
printf_s("\n");
}
printf_s("\t%c : %c%i\t", char(i), i < 100 ? char(32) : char(0), i);
}
printf_s("\n\nAppuyez sur Echap pour quitter...");
} while (_getch() != 27);