Skip to content

Instantly share code, notes, and snippets.

@Thiago4532
Created May 21, 2019 22:18
Show Gist options
  • Save Thiago4532/4783d18eccaaea0927268643892441a3 to your computer and use it in GitHub Desktop.
Save Thiago4532/4783d18eccaaea0927268643892441a3 to your computer and use it in GitHub Desktop.
#include <stack> // Biblioteca da stack
using namespace std;
int main() {
stack<int> pilha; // Declaro a stack do tipo int
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment