Create two struct data types. Insure that the first type has scalar and array members. Also insure that the second type is included as a member in the first type.
I'm not exactly sure how I am supposed to go about this... Someone Please Help!
struct Second; // forward declaration
struct First
{
public:
// scalar...
// array...
// Second...
}
struct Second
{
public:
// stuff... didn't say what goes in second struct
}