This declaration
int r, c;
cin >> r >> c;
int matrix[r][c];
is a variable-length array declaration.
This array's storage duration is set automatically.
And the array is formed during runtime when the values of the variables r and c are known.
Variable length arrays, on the other hand, are not a standard C++ feature.
You might use the standard container std::vector instead of the array.
std::vector<std::vector<int>> matrix( r, std::vector<int>( c ) );
In this case all elements of the matrix will be zero-initialized.