Skip to content

Instantly share code, notes, and snippets.

@ampulhetadosaber
Created August 27, 2020 00:00
Show Gist options
  • Save ampulhetadosaber/5cef1b159d5ef05df5344d3274f78042 to your computer and use it in GitHub Desktop.
Save ampulhetadosaber/5cef1b159d5ef05df5344d3274f78042 to your computer and use it in GitHub Desktop.
vector<int> I;
I.push_back(10);
I.push_back(17);
I.push_back(0);
I.push_back(-15);
cout << I.size() << "\n";
// imprime o tamanho de I, no caso 4
I.clear();
// Apago I
cout << I.size() << "\n";
// Imprimo o tamanho de I, no caso 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment