Me again.

When you create an array of objects, how can you pass the arguments required by the constructor?

example:

when you declare a single object it might look something like this:
Code:
clsComplex Number(2,1);
but when you declare an array of objects:
Code:
clsComplex Number[3];
How do you also add the arguments for the constructors?