【求助】二维char数组访问

作者:Rem ㅤ | 发布时间:

const char *temp[] = {"abc", "def", "ghi"};
cout << *(temp + 1)[1] << endl;

输出结果为:

g

原理是什么呢?

标签:c/c++