Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. void printAll(std::vector<std::string> & printColNames) {
  2.         for(int y = 0; y < rows; ++y) {
  3.             for(int i = 0; i < printColNames.size(); ++i) {
  4.                 std::cout << entries[y][i] << " ";
  5.             }
  6.             std::cout << "\n";
  7.         }
  8.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement