我正在尝试通过以下方式从命令行输入分配数组..但是我仍然收到警告..粘贴了下面的错误消息..请仔细研究一下..哪些更改可以使这段代码完美..
int ni = atoi(argv[1]);
int nj = atoi(argv[2]);
int *a[ni][nj];
for(i=1; i<ni; i++)
{
for(j=1; j<nj; j++)
{
a[i][j] = 10*j + i;
}
printf("%d", a[i][j]);
}
Compiler oputput:
In function main:
warning: incompatible implicit declaration of built-in function malloc
warning: assignment makes pointer from integer without a cast
既然你正在使用C++我建议如下方式:
#include <vector>
#include <iostream>
// ...
int ni = atoi(argv[1]);
int nj = atoi(argv[2]);
std::vector< vector<int> > a(ni, vector<int>(nj));
for (int i = 0; i<ni; i++)
{
for (int j = 0; j<nj; j++)
{
a[i][j] = 10 * j + i;
std::cout << a[i][j];
}
}
您需要使用动态分配。不能从命令行输入执行静态分配。
看看这里: 如何使用 new 在 C++ 中声明 2D 数组?