#include void main() { char ch; clrscr(); for (ch='A';ch<='Z';ch++ ) { printf("%c = %d \t\t",ch,ch); if(ch%2==0) printf("\n"); } getch(); }