|
From: | Brett Green |
Subject: | Re: Issue with the variable after exiting for loop |
Date: | Thu, 28 May 2020 18:20:38 -0400 |
you shouldn't have to declare abc_p. that loop will assign element by element into abc_p, expanding it each time the size needs to increase for the assignment. this could get very slow for large arrays, as you are creating a copy of abc_p every time it needs to expand the size.
[Prev in Thread] | Current Thread | [Next in Thread] |