Skip to content

Instantly share code, notes, and snippets.

@goloveychuk
Created December 13, 2013 08:31
Show Gist options
  • Save goloveychuk/7941359 to your computer and use it in GitHub Desktop.
Save goloveychuk/7941359 to your computer and use it in GitHub Desktop.
int *a()
{
int *mas = new int(NUMBER_OF_ELEMENTS);
operations_with_array();
return a;
}
void main()
{
int *mas = a();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment