include <iostream>;
using namespace std;
void f(int (&x)[10])
{
for (int i=0; i<10; i++)
cout << i << ' ';
cout << endl;
}
int
main ()
{
int y[11]={1,2,3,4,5,6,7,8,9,0,99};
typedef int (*A)[10];
f(*(A)y);
}