Guest User

Untitled

a guest
Apr 24th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. showInst(vectInst);
  2.  
  3. void showInst(vector<vector<string>> vectInst);
  4.  
  5. void showInst(vector<vector<string>> vectInst) {
  6.  
  7. for(i=0; i<vectInst.size(); i++){
  8. for(j=0; j<vectInst[i].size(); j++){
  9. cout << vectInst[i][j];
  10. }
  11. }
  12. }
Add Comment
Please, Sign In to add comment