I’m writing a 2d array program and i’m having issues getting it to print out, I’m not sure if i’m doing my 2d array passing correct now as its crashing instead of running at all. Any advice would be helpful
void initialize(int* one, int** two);
void replace(int* arr,int rows, int cols,int value);
void fill(int* arr, int rows, int cols);
void print(int** arr, int rows, int cols);
ofstream outfile;
ifstream infile;
int arrayOne[100][100];
int arrayTwo[100][100];
int main(){
int rows,cols=0;
cout << "Please input how many rows you would like in the array: ";
cin >> rows;
cout << "Please input how many columns you would like in the array: ";
cin >> cols;
fill(arrayOne[100][100],rows,cols);
//print(arrayOne[100][100],rows,cols);
system("pause");
return 0;
}
void initialize(int* one, int* two){
for(int i=0;i<100;i++){
for(int j=0;j<100;j++){
arrayOne[i][j]=0;
arrayTwo[i][j]=0;
}
}
}
void replace(int* arr,int rows,int cols,int value){
arr[rows][cols]=value;
}
void fill(int* arr, int rows, int cols){
int i=0;
for(int r=0; r < rows; r++){
for(int c=0; c < cols; c++){
replace(arr,r,c,i++);
}
}
}
void print(int** arr, int r, int c){
for(int i=0;i<r;i++){
for(int j=0;j<c;j++){
cout << arr[i][j] << " ";
}
cout << endl;
}
}
If you read the error message, it plainly states your problem. That being said, it does not plainly state how to fix it. You’re going down a rough path with fixed arrays…
You have other issues, but those can be asked in other questions when you run into them.