Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 20, 2019 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/cc6a4a2872284d1f46a31deca0756de8 to your computer and use it in GitHub Desktop.
Save parzibyte/cc6a4a2872284d1f46a31deca0756de8 to your computer and use it in GitHub Desktop.
std::vector<int> numeros;
// Se agregan al final con push_back
numeros.push_back(50);
numeros.push_back(70);
numeros.push_back(80);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment