fix: Use delete[] operator

This commit is contained in:
Panquesito7
2020-06-23 17:52:04 -05:00
parent 957a05bd0c
commit cea644bdc3

View File

@@ -51,7 +51,7 @@ int main() {
}
} while (ch != 0);
delete stack;
delete[] stack;
return 0;
}