// 練習問題6 // 4.つぎのプログラムを実行した後,出力される文字列は何か。 // 63ページ #include int main(void) { char *p[3], *t; p[0] = "analogue"; p[1] = "digital"; p[2] = "computer"; t = *p; *p = *(p + 1); *(p + 1) = t; printf("%s %s\n", p[0], p[2]); }