如题目或答案有误,请通过BUG反馈告知我们修正,谢谢!
将串str1复制到串str2中后再连接到串str3之后
将串str1连接到串str2之后再复制到串str3之后
将串str2复制到串str1中后再将串str3连接到串str1之后
将串str2连接到串str1之后再将串str1复制到串str3中
C语言程序总是从第一个定义的函数开始执行
在C语言程序中,要调用的函数必须在main()函数中定义
C语言程序总是从main()函数开始执行
C语言程序中的main()函数必须放在程序的开始部分
void fun (int x, int y);
fun (int x, int y);
int fun (int x,y);
char *fun (char *s);
不定值
4
3
1
struct结构体类型的关键字
example是结构体类型名
x,y,z都是结构体成员名
struct ex是结构体类型
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)
char b[10]={'H','e','l','l','o','!'};
char b[10]; b="Hello!";
char b[10]; strcpy(b,"Hello!");
char b[10]="Hello!";
20
24
25
30
9
10
0
5
提交答案
推荐工具