c Elementos de matriz de troca
void swap_arrays(int *y, int *z)
{
int x,temp;
for(x=0;x<SIZE;x++)
{
temp = y[x];
y[x] = z[x];
z[x] = temp;
}
}
Uptight Unicorn