如题目或答案有误,请通过BUG反馈告知我们修正,谢谢!
*(a[1]+1)
*(&a[1][1])
(*(a+1))[1]
*(a+5)
9
7
5
以上均不是
8,10,16
8,10,10
10,10,10
10,10,16
-3
-12
6
4
10
2 1 4 3
1 2 1 2
1 2 3 4
2 1 1 2
s\\t
s\t
s\
s
12
21
28
用typedef可以增加新的类型
用typedef可以定义各种类型名,但不能用来定义变量
用typedef只是将已有的类型用新的标识符来代表
使用typedef有利于程序的通用和移植
char *str; str="string";
char str[7]={'s','t','r','i','n','g'};
char str1[10];str1="string";
char str1[]="string",str2[]="12345678";
提交答案
推荐工具