On the 2nd for-loop, I get the following error from gcc:
error: expected unqualified-id before \'int\'
I\'m not sure what I\'m missing. I\
Try without the int before col.
int
col
for (int i = 0, col = 0; i < values.size(); i++, col++)