如题目或答案有误,请通过BUG反馈告知我们修正,谢谢!
1
30
1 -2
死循环
0
29
31
无定值
b=a/2
b=6-(--a)
b=a%2
b=a>3?2:1
10<回车>22<回车>33<回车>
10.0,22.0,33.0<回车>
10.0<回车>22.0 33.0<回车>
10 22<回车>33<回车>
p+=2,*(p++)
p+=2,*++p
p+=3,*p++
p+=2,++*p
12
8
7
11
void fun (int x, int y);
fun (int x, int y);
int fun (int x,y);
char *fun (char *s);
将串str1复制到串str2中后再连接到串str3之后
将串str1连接到串str2之后再复制到串str3之后
将串str2复制到串str1中后再将串str3连接到串str1之后
将串str2连接到串str1之后再将串str1复制到串str3中
20
16
14
(*p).data.a
(*p).a
p->data.a
p.data.a
提交答案
推荐工具