// 例題6.2 文字列定数の内部表現 // 61ページ #include int main(void) { char *p = "Mars"; printf("%2x %2x %2x %2x %2x\n", *p, *(p + 1), *(p + 2), *(p + 3), *(p + 4)); }