问题描述
- 为什么可以这样写 strcmp(a[i],a[i+1]),这不是说明a[i]是*类型的吗?有点晕,希望大神指点。
-
a[1]与&a[1]的区别,a[1]可以表示地址吗?a[1]是不是一个指针呢?为什么可以这样写 strcmp(a[i],a[i+1]),这不是说明a[i]是*类型的吗?有点晕,希望大神指点。
解决方案
我明白了,此处a[]可理解为指针数组
解决方案二:
a[1]是数组a的第二个元素,是一个变量,&a[1]是变量a[1]的地址,是一个地址。
解决方案三:
Question: How do I identify my file system type? I like to upgrade my current file system to the latest ext4. Before that I would like
to know what my current file system type is for various mount p......
答案就在这里:linux文件系统类型How do I identify my file system type?
解决方案四:
都没说a是什么类型的变量
听你的意思a是char 吗
还是char *
时间: 2024-10-26 05:40:57