Я пишу программу, в которой передаю 3d-массив в качестве параметра функции remove_red()
, но после второй строки значения в массиве перезаписываются некоторыми случайными числами. Это код:
void remove_red(int image[100][100][3], int row_num, int col_num)
{
printf("You are now in remove_red function\n");
for(int i = 0; i < row_num; i++){
for (int j = 0; j < col_num; j++) {
for (int k = 0; k < 3; k++) {
printf("%d ", image[i][j][k]);
}
printf("\n");
}
}
}
int main(int argc, char *argv[]) {
int option;
scanf("%d", &option);
if(option == 1 || option == 2 || option == 3){
char type[3];
int col_num, row_num, contrast;
scanf("%s %d %d %d", type, &row_num, &col_num, &contrast);
printf("Type: %s, columns: %d, rows: %d, contrast: %d, option: %d\n", type, col_num, row_num, contrast, option);
int image[row_num][col_num][3];
int pixel;
for(int i = 0; i < row_num; i++){
for (int j = 0; j < col_num; j++) {
for (int k = 0; k < 3; k++) {
scanf("%d", &pixel);
printf("%d ", pixel);
image[i][j][k] = pixel;
printf("The added number is %d ", image[i][j][k]);
}
printf("\n");
}
}
printf("Type: %s, columns: %d, rows: %d, contrast: %d, option: %d\n", type, col_num, row_num, contrast, option);
if(option == 1){
printf("You chose option %d!\n", option);
//The image 3d array has all values in this part of the code
remove_red(image, row_num, col_num);
}else if(option == 2){
printf("You chose option %d!\n", option);
convert_to_black_and_white(image);
}else if(option == 3) {
printf("You chose option %d!\n", option);
instagram_square(image);
}
}else{
printf("Error: Expecting one command-line argument, which needs to be either 1, 2, or 3.");
return 0;
}
return 0;
}
Когда в remove_red()
я печатаю массив, я получаю:
1 2 2 3 2 3<br>
1380275029 1480938591 1313169236 1229213507 809322318 893792632
вместо
1 2 2 3 2 3
2 3 3 3 4 5
Кто-нибудь знает, почему это может произойти? Заранее благодарю за любую помощь.