Skip to content

Instantly share code, notes, and snippets.

@kasramp

kasramp/test.cpp Secret

Created August 1, 2020 23:31
Show Gist options
  • Save kasramp/b64a98d1c34e455ec4188ffe99af9a83 to your computer and use it in GitHub Desktop.
Save kasramp/b64a98d1c34e455ec4188ffe99af9a83 to your computer and use it in GitHub Desktop.
void test() {
int x = 5;
int *y = new int[x];
int *z = new int[10];
delete[] y;
delete[] z;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment