#include <stdio.h> int main() { char ch; for ( ch = 'a'; ch <= 'z' ; ch++ ) { printf ( "%c", ch ); } printf ( "\n" ); }