Hello,
How does one declare and initialize single and multidimensional arrays in EA/UML? The ultimate objective would be to generate code from a class diagram that has the array defined in it.
Foe example the generated code for a 3x4 array, aaray1[3][4] should look something like:
const int array1
{
{1,2,3,4},
{5,6,7,8},
{9,10,11,12}
};
I am from the C world and new to EA and UML... please help!
Thanks,
Hans.