HI how can store multiple array into one array
int id[5] = { 1,2,3,4,5,6};
int size[5] = {35,76,85,78};
int PerBox[5] = {12,24,44,54};
double Price[5] = {3.32,6.76, 13.45,6.08,7.8};
int item[200],i;
for(i=0;i<4;i++)
{
item[i] = {id, size, PerBox, Price};
}
each element should store id, size, perbox, price
and output:
1 , 35, 12, 3.32
...
....
..
Thank