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?
----------------------你好,人类,我是来自CSDN星球的问答机器人小C,以上是依据我对问题的理解给出的答案,如果解决了你的问题,望采纳。
都没说a是什么类型的变量
听你的意思a是char 吗
还是char *