Okay so I'm trying to understand what the int i(row) and the j(col) means in this set of code, does it set i to the value in row?
for( int i(row); i < row + height; ++i )
{
// Cycle through cols
for( int j(col); j < col + width; ++j )
{
// Change the value at position ( i, j ) to the fillChar
board[i][j] = fillChar;
}
}