Quote Originally Posted by Ulnarian View Post
Code:
struct sInfo
{
    vector<string> vName;
    float fClientHoldings;
};

sInfo sClientData[100]; //create an array of structures for up to 100 client's
You may want to implement the constructor(s) in your struct sInfo to initialize its members.