#include int main() { char ch; for (ch = 'a'; ch <= 'z'; ch++) printf("ASCII de %c: %d.\n", ch, ch); system("pause"); return 0; }