First of all, thanks for any help that I'll receive.
Now on to the question.
I'm wondering how do I create an array of an object in C++?
I've done this in Java before but I've got no idea how to do it in C++.
import Accout.java
private Account accounts[];
public AccountDatabase()
{
accounts = new Account[ 2 ];
accounts[ 0 ] = new Account(12345, 54321, 1000.00);
}
I'm trying to convert that exact same thing from Java to C++.