```c typedef int int_array[1]; typedef struct { int_array arr; } my_struct; int_array const * get_array(const my_struct *s) { return &(s->arr); } ```