#include #include int main() { // we can initialize the array when it is declared char letters[5] = {'a', 'b', 'c', 'd', 'e'}; // leave it up to the compiler to calculate the lenght of the array char alphabet[] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'}; // print the array int i; for(i=0; i< 5; i++) printf("%c ", letters[i]); printf("\n"); for(i=0; i< 26; i++) printf("%c ", alphabet[i]); printf("\n"); system("pause"); }