It should be quite simple, but i can't make it work:
for example:
unsigned int num[20];
and i want to make a reference the array 'num' in the function 'setter', is this how i'm supposed to do it?
void setter(const unsigned int& nn[20]){num=nn;};
I get the error: 'nn is an array of references'
thank you for your help
for example:
unsigned int num[20];
and i want to make a reference the array 'num' in the function 'setter', is this how i'm supposed to do it?
void setter(const unsigned int& nn[20]){num=nn;};
I get the error: 'nn is an array of references'
thank you for your help