如题目或答案有误,请通过BUG反馈告知我们修正,谢谢!
在C中,函数中的自动变量可以赋初值,每调用一次,赋一次初值
在C中,在调用函数时,实参和对应形参在类型上只需赋值兼容
在C中,外部变量的隐含类别是自动存储类别
在C中,函数形参可以说明为register变量
0
1
3
表达式语法有错
(*p).data.a
(*p).a
p->data.a
p.data.a
11,10
11,11
10,10
10,11
void play(var :Integer,var b:Integer)
void play(int a,b)
void play(int a,int b)
Sub play(a as integer,b as integer)
20
24
25
30
s\\t
s\t
s\
s
2
将串str1复制到串str2中后再连接到串str3之后
将串str1连接到串str2之后再复制到串str3之后
将串str2复制到串str1中后再将串str3连接到串str1之后
将串str2连接到串str1之后再将串str1复制到串str3中
char b[10]={'H','e','l','l','o','!'};
char b[10]; b="Hello!";
char b[10]; strcpy(b,"Hello!");
char b[10]="Hello!";
提交答案
推荐工具