Hi,
i have searched but i couln't find a solution to my situation,
could you please help ?
my values:
insigned int Values_1 [] = {5,8,11,14}
insigned int Values_2 [] = {22,35,1}
insigned int Values_3 [] = {1,2,3,4,5,6,7,8}
insigned int values_4 [] = {33,25,46,89,12}
what i want :
All_Values [] = Values_1 & Values_2 & Values_3 & Values_4
i mean, multiple arrays should merge and become one big array like this:
All_Values [] = {5,8,11,14,22,35,1,1,2,3,4,5,6,7,8,33,25,46,89,12}
how can i do it ?
thanks in advance