Advertisement
Guest User

pollaza

a guest
Apr 25th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. void mostrarContenido(const Valor * const coleccion, int util){ //muestra el contenido del vector
  2. for(int i=0; i < util; i++){
  3. cout <<"{" << (coleccion+i)->fila << ", " << (coleccion+i)->columna << ", " << (coleccion+i)->valor << "}";
  4. cout << " -- ";
  5. }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement