I'm trying to output the number of element-objects in my array, but the syntax for that is not the same as it is for Java:
    // print list of all messages to the console
void viewSent()
{
    cout << "You have " << sent.size() << " new messages.\n";//Error: left of '.size' must have class/struct,union
    std::cout << "Index      Subject" << '\n';
    for (size_t i = 0; i < sent.size(); ++i)
    {
        std::cout << i << "    : " << sent[i].getSubject() << '\n';
    }
}
if the .size doesn't work in C++ syntax, what does?
 
     
    