1 struct leaf { 2 unsigned int numbers[2]; 3 }; 4 foo(leaf * x)5 void foo(leaf * x) { x->numbers[1] = x->numbers[0]; } 6