Ahhh, ok. This is what I am looking for. While replying to your post, I was trying to make another example, and I found out exactly what I am looking for. I remember it had data types it is, where you declared your own.
Ok, I am looking for an array in an array, but not a vector. Now, bare with me, cuz I forgot the syntax, and Im not even sure if this is the right way to do this. But something like:

datatype this_data //is datatype a keyword?
{
int this_int;
string this_string;
}

struct bob
{
int that_int;
datatype this_data;
};

or maybe it was two structs, one in another. I am not just looking for a struct array, but an struct array in another struct array. I dont think I did it with two structs. If I remember correcly it was something like what I have above.
Anywayz, thanks for your help. I know I am being confusing.

-Ep

P.S. How do you put your code in the "code" format?