so i want to make my own vector class with functions that i use regularly like writing the array, inserting an element, sorting .. that sort of stuff.
and i was thinking i would have a public variable a[NMAX] that would be the array itself. I thought of passing the array`s length as a parameter for the constructor but I don't think i`m doing it right.