c++
int* board;
introws;
intcolumns;
cout < "line="" 4:="" enter="" two="">
cin >> columns >> rows;
cout <>
board= new int [rows];
for(int row =0; row < rows;="">
board [row] = new int [columns];
Question:
Given the following INPUT: 2 3 10 20 30 40
If the data was entered was as notedin the code the code above, WHAT would be the declaration of be if it were not dynamically allocated?
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here