как вот этот тип из Delphi будет выглядеть в С/С++? Code: [B][COLOR=DarkOrange]type[/COLOR][/B] [COLOR=DarkOrange]TBoblegum[/COLOR] = [COLOR=YellowGreen]array[/COLOR] [ 0..5 ] of [COLOR=YellowGreen]array[/COLOR][ 0..3 ] of [COLOR=PaleTurquoise]Single[/COLOR]; предполагаю что правильно будет как то так: Code: struct TBoblegum { float array[6][4]; }; но правильно ли так?