作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
错误:数组下标无效的类型'long double ** [long double]'
long double** make2darray(long int V)
{
long double **array2,i;
array2 = (long double**) malloc (V*sizeof(long double*));
for(i=0;i<V;i++)
{
array2[i] = (long double*) malloc (V*sizeof(long double));
}
return array2;
}
最佳答案
数组中的索引必须始终具有整数类型,您需要将声明更改为:
long double **array2;
size_t i;
6.5.2.1 Array subscripting (Contraints)
- One of the expressions shall have type ‘‘pointer to complete object type’’, the other expression shall have integer type, and the result has type ‘‘type’’.
std::vector
或
std::array
关于c++ - 长双二维动态数组C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24490060/
我是一名优秀的程序员,十分优秀!