#include #include int main() { char a[2] = {'a', 'A'}; // One dimensional array int b[2][26]; //Two dimensional array int i; for(i = 0; i < 26; i++) { b[0][i] = a[0] + i; //Use the ASCII value of a[0] //printf("%d ", b[0][i]); printf("%c ", b[0][i]); //print the letter with ascii b[0][i] } printf("\n"); for(i = 0; i < 26; i++) { b[1][i] = a[1] + i; //Use the ASCII value of a[1] //printf("%d ", b[0][i]); printf("%c ", b[1][i]);//print the letter with ascii b[1][i] } return 0; }