如题目或答案有误,请通过BUG反馈告知我们修正,谢谢!
*p
a[10]
*a
a[p-a]
数组的长度
数组的首地址
数组每一个元素的地址
数组每个元素中的值
0
1
3
表达式语法有错
36
24
18
20
4
6
12
void fun (int x, int y);
fun (int x, int y);
int fun (int x,y);
char *fun (char *s);
char b[10]={'H','e','l','l','o','!'};
char b[10]; b="Hello!";
char b[10]; strcpy(b,"Hello!");
char b[10]="Hello!";
5
7
*(w[0]+2)
*(pw+1)[2]
pw[0][0]
*(pw[1]+2)
10<回车>22<回车>33<回车>
10.0,22.0,33.0<回车>
10.0<回车>22.0 33.0<回车>
10 22<回车>33<回车>
提交答案
推荐工具