Possible to use 2 different structures in 1 array?

 
Hello,

is it possible to use two structures in 1 array?

Something link that?
struct mystructA                                      
{  
   string   fieldnameA;      
   int      value_intA;        
   double   value_doubleA;    
   string   value_stringA;     
};

struct mystructB                                      
{  
   string   fieldnameB;      
   int      value_intB;        
   double   value_doubleB;    
   string   value_stringB;     
};

mystructA myArray[][1][10]; 
mystructB myArray[][2][10]; 

At the end i need this:
myArray[...][0][0...9].fieldnameA
and
myArray[...][1][0...9].fieldnameB
 
ReLor2: is it possible to use two structures in 1 array?
  1. Of course, not. An array only has one datetype.
  2. Both structures are identical, only the field names differ. Use one.
 
No!