gpt4 book ai didi

c - 在 VS Express 2012 中用 c 定义二维数组

转载 作者:行者123 更新时间:2023-11-30 20:48:17 25 4
gpt4 key购买 nike

#include<stdio.h>
void main()//this is the way that we pragram in c
{
int arr[][]={{1,2},{1,2},{1,3}};//in class it wasnt required to initialize both
}

错误:

Error 1 error C2087: 'arr' : missing subscript
Error 2 error C2078: too many initializers
3 IntelliSense: an array may not have elements of this type

我是初学者,我在类里面看到教授做了同样的事情。我还问了我的导师,他告诉我应该会引发这个错误。

有人可以告诉我哪里出了问题吗?

最佳答案

你缺少类型;除第一个维度外的所有维度都必须指定;并且聚合初始值设定项之间缺少逗号。工作示例:

int main(void) {
int arr[][2] = {{1,2}, {1,2}, {1,3}};
}

关于c - 在 VS Express 2012 中用 c 定义二维数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44034712/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com