Тема: Не коректно виводить матрицю
#include <iostream>
#include <iomanip>
#define SIZE 10
using namespace std;
void printArray(int array[SIZE][SIZE]);
int main() {
int array[SIZE][SIZE];
printArray(array);
return 0;
}
void printArray(int array[SIZE][SIZE]) {
for (int j = 0; j < SIZE; j++) {
for (int k = 0; k < SIZE; k++) {
cout << setw(5) << array[j][k];
}
cout << endl;
}
}
Виводить кожні значення масиву як -87867596. Як зробити щоб було від 1 до 10? Начеб-то все правильно