/*
第2種情報処理技術者試験 平成5年度・春期・午後 問8(設問2)
BohYoh Shibata PREPARATION
*/
#include <stdio.h>
char *planet[] = {
"Sun","Mercury","Venus","Earth","Mars","Jupiter",
"Saturn","Uranus","Pluto","Neptune"
};
main()
{
char **pt_p;
int i;
pt_p = planet ;
for (i = 0; i < 10; ++i)
printf("%d : %s\n", i, *pt_p++);
}