Create two struct data types?

Hello, I need to..

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!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
struct Second; // forward declaration

struct First
{
public:
    // scalar...
    // array...
    // Second...
}

struct Second
{
public:
    // stuff... didn't say what goes in second struct
}
Last edited on
Topic archived. No new replies allowed.