如题目或答案有误,请通过BUG反馈告知我们修正,谢谢!
void fun (int x, int y);
fun (int x, int y);
int fun (int x,y);
char *fun (char *s);
s\\t
s\t
s\
s
1
3 0
1 -2
死循环
无限次
有语法错,不能执行
一次也不执行
执行1次
10<回车>22<回车>33<回车>
10.0,22.0,33.0<回车>
10.0<回车>22.0 33.0<回车>
10 22<回车>33<回车>
char b[10]={'H','e','l','l','o','!'};
char b[10]; b="Hello!";
char b[10]; strcpy(b,"Hello!");
char b[10]="Hello!";
2,M
3,E
2,E
输出项与对应的格式控制不一致,输出结果不确定
p+=2,*(p++)
p+=2,*++p
p+=3,*p++
p+=2,++*p
enum a={one,two,three};
enum a{one=9,two=-1,three};
enum a={″one″,″two″,″three″};
enum a{″one″,″two″,″three″};
(x>=Y)&&(Y>=z)
(x>=Y)AND(y>=z)
(x>=Y>=z)
(x>=Y)&(Y>=z)
提交答案
推荐工具