设有以下程序段:charstr[4][10]={“frist”,”secon

白也_839 |浏览851次
收藏|2022/03/09 20:15

满意回答

2022/03/09 20:24

strp 是个指针数组,也相当于一个二级指针对上面的程序,最终strp[0]=“frist”strp[1] = "second"strp[2] = "third"strp[3] = "forurth"而 *strp 就是个一维指针了,它指向的是strp[0],也就是它与strp[0]的值是相等的,就是“frist”

whoami1978

其他回答(0)
0人关注该问题
+1

 加载中...