There is an array: int a[MAX]; and the function will return a[MAX] value: int* return_a_value(){ return a; } Is this code correct?