#include<stdio.h>
 
int main()
{
    static char *s[] = {"black""white""pink""violet"};
    char **ptr[] = {s+3, s+2, s+1, s}, ***p;
    p = ptr;
    ++p;
    printf("%s", **p+1);
    return 0;

}



程序的输出

相关文章:

  • 2022-12-23
  • 2022-01-11
  • 2022-12-23
  • 2021-09-21
  • 2021-10-10
  • 2021-09-24
  • 2021-10-14
  • 2021-06-10
猜你喜欢
  • 2022-12-23
  • 2022-01-12
  • 2021-07-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案