Okay. Let me explain more. I want to put three consts into one variable with three vector cells. Maybe if I make the variable with two arrays (I mean two [][]) and put in the frist 3 vector cells, because the consts are three, and in the second vector cells I will have to put the size of each const. But it's only one array (the second []), when I have to put different sizes of consts for the three different consts in the first array (which is [3]). Like when the first array is [0], the second to be [sizeof const1], when the first array is [1], the second to be [sizeof const2]. Don't know how to explain it, but I want to get the different const name when the vector cell of the variable is different. For the different cell to result a different const. Again, don't know if this imaginated method is possible.