#include int main(){ char *animals[] = {"elephant", "gorilla", "monkey", "goose", "hedgehog"}; for(int i = 0; i < 5; i++){ for(int j = 0; j < 5; j++){ printf("%c", animals[j][i]); } printf("\n"); } return 0; }