#include <iostream>

int main() {
  int a[5] = {1, 0, 2, 0, 3};
  int (&b)[5] = a;
  b[2] = 5;
  for (int e : a)
    std::cout << e << ' ';
}