有一道关于指针的C语言题~求大神解答!

2024年12月02日 19:36
有1个网友回答
网友(1):

char b[] = p;
或者
char *b = p;
或者
char &b = p;