#include void main() { char dwarf[7][8] = { "bashful", "doc", "dopey", "grumpy", "happy", "sneezy", "sleepy", }; char *seven[] = { "bashful", "doc", "dopey", "grumpy", "happy", "sneezy", "sleepy" }; int x; for(x=0;x<7;x++) printf("%s\n",dwarf[x]); putchar('\n'); for(x=0;x<7;x++) printf("%s\n",seven[x]); }