size = diap("Input size-->", 0, max_size-1)
bool operator==(const COleDateTime& date) const throw(); bool operator!=(const COleDateTime& date) const throw(); bool operator<(const COleDateTime& date) const throw(); bool operator>(const COleDateTime& date) const throw(); bool operator<=(const COleDateTime& date) const throw(); bool operator>=(const COleDateTime& date) const throw();
</stdio.h>
void playgame() { std::string input; while (true) { puts("Go player one"); getline(std::cin, input); if (input != "") { int index = std::stoi(input) - 1; if ((index >= 0) && (index <= 8)) { int row = index / 3; int col = index % 3; char grid_position = map[row][col]; ...