Which one of the following would correctly complete the class definition above?
```
Class Matrix {
public:
Matrix() {}
private:
int rows;
int cols;
// Completion goes here
}
```
a. int mat[][];
b. int mat[rows][cols];
c. int mat[][cols];
d. int mat[6][6];
d. int mat[6][6];
Computer Science & Information Technology
You might also like to view...
In the Outlook Web App, the Reply All command sends a copy of the email to everyone to whom the original email was sent except those who received a blind courtesy copy
Indicate whether the statement is true or false
Computer Science & Information Technology
The data validation method that causes fields to be limited to predefined list of values is a:
A) data macro. B) validation text. C) lookup list. D) default value.
Computer Science & Information Technology