I always though that if I declare these three variables that they will all have the value 0
int column, row, index = 0;
Bu
I wouldn't recommend this, but if you're really into it being one line and only writing 0 once, you can also do this:
int row, column, index = row = column = 0;