Ok, all I need to know is how to use 2 variables in a for loop. My code is as follows:
for( int i = row + 1, k = col + 1; i > -1, k < 8; i--, k++)
Its for an othello program Im wrighting and the error is- ; expected
Any help would be greatly apprectiated, thanks.