johnsblog
#include<stdio.h>

int main()
{
    char *p[2][1] = {"Hello","Tencent"};
    printf("%s\n",*(*p+1)+1);
    return 0;
}

output:

encent

分类:

技术点:

相关文章:

  • 2021-11-30
  • 2021-11-30
  • 2022-12-23
  • 2021-11-30
  • 2021-11-30
  • 2021-05-07
  • 2022-12-23
  • 2021-11-30
猜你喜欢
  • 2021-11-30
  • 2021-11-30
  • 2021-11-30
  • 2021-11-12
  • 2021-11-30
  • 2021-11-30
  • 2021-11-30
相关资源
相似解决方案