如题目或答案有误,请通过BUG反馈告知我们修正,谢谢!
*p
a[10]
*a
a[p-a]
*(w[0]+2)
*(pw+1)[2]
pw[0][0]
*(pw[1]+2)
s\\t
s\t
s\
s
C语言程序总是从第一个定义的函数开始执行
在C语言程序中,要调用的函数必须在main()函数中定义
C语言程序总是从main()函数开始执行
C语言程序中的main()函数必须放在程序的开始部分
/
%=
!=
〈=
将串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!";
20
24
25
30
2 1 4 3
1 2 1 2
1 2 3 4
2 1 1 2
1
2
4
5
提交答案
推荐工具