Use/return a integer value from a double array - page 2

 
struct Trading
{
   int                ticket;
   double             next_trail_price;
   double             trailDistance;
};
Trading      TradeArrayBuy[];
Trading      TradeArraySell[];
         RemoveElement(x,TradeArraySell);
int RemoveElement(int x,Trading &array[])
{
}

Just an example.