You have 211 hash tables, so yeah, you need to print each one.

Your loop should be
Code:
    for(i = 0; i < 211; i++){
        hashTab->printInOrder();
    }
Consider making the table size a constant.