How can I declare and define multiple variables in one line using C++?

int column = 0, row = 0, index = 0;

Leave a Comment