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

[Error] subscripted value is neither array nor pointer nor vector

错误原因

携带下标的值不是数组或指针。
想对一个变量名使用下标,它必须要是数组名或指针名

我的错误

C语言 [Error] subscripted value is neither array nor pointer nor vector_第1张图片

将数组分开定义了/重复变量名age

C语言 [Error] subscripted value is neither array nor pointer nor vector_第2张图片

解决方法

将数组重新定义就了
C语言 [Error] subscripted value is neither array nor pointer nor vector_第3张图片

你可能感兴趣的:(c语言,开发语言)