Array length: Difference between revisions

Content deleted Content added
Line 580:
argument the appropriate parameter will "forget" what size the array is.
</p><p>
Therefore, an object-oriented technique is used in the solution below. (This is possible even withoutwith thestandard advantagesC, i.e. C without ++.) Block of memory in which is stored the array is wrapped in structure and thus the size of the array can be easily stored. It is very convenient. Having defined such "classes" as StringArray, their use is easy and hassle-free. Nevertheless, the C language is not designed for OOP, and therefore C ++ is simply better for these kinds of applications.
</p>
====Solution====