int main(){ char a[25]; strcpy(a,"hoge"); char *pt=a; char **ppt=pt; printf("%s %s %s\n",a,pt,*pt); return EXIT_SUCCESS; }