I go back to the community in search of help and learn, the code is not finished but when compiling and executing, when I do the test it throws me an error, can someone tell me what is wrong ?, in the faculty I made the same code and in the version of dev c ++ 5.11 throws me that error, and in an older version I was walking perfectly.
#include <iostream>
#include <windows.h>
using namespace std;
int main () {
int a,b,fila,columna;
int matriz [fila][columna];
system ("color F3");
cout << "\t\t\t PROGRAMA DE MATRIZ EJ 1 C++" << endl << endl;
cout << "Ingrese el valor de filas que quiere que tenga la matriz: "; cin >> fila;
cout << "Ingrese el valor de columnas que quiere que tenga la matriz: "; cin >> columna;
cout << "Ingrese el valor de los elementos de la matriz: " << endl;
for (a = 0 ; a < fila ; a++) {
for (b = 0 ; b < columna ; b++) {
cout << "Fila " << "[" << a << "]" << " " << "columna " << "[" << b << "]: ";
cin >> matriz[a][b]; cout << endl;
}
}
system ("pause");
}