subscripted专题

C语言 [Error] subscripted value is neither array nor pointer nor vector

[Error] subscripted value is neither array nor pointer nor vector 错误原因 携带下标的值不是数组或指针。 想对一个变量名使用下标,它必须要是数组名或指针名 我的错误 将数组分开定义了/重复变量名age 解决方法 将数组重新定义就🆗了

C语言编译报错:error: subscripted value is neither array nor pointer nor vector

如图,在获取int main(int argc, const char *argv[])参数时报错, 原因:携带下标的值不是数组或指针。 意思就是:想对一个变量名使用下标,它必须要是数组名或指针名(我这里把argv写成argc了,argc不是数组,而是个数字) 解决办法:改回来printf("argc error![%s]\n", (char*)argv[0]);就好了,甚至char*都不用