/* EX2-4.C */ #include main() { int ctr; for( ctr = 65; ctr < 91; ctr++ ) printf("%c", ctr ); return 0; } /* end of program */