考察C++数组声明时的长度自动推导规则,选出符合要求的选项
int arr[];
int arr[] = {1,2,3,4};
int arr[5] = {1,2,3};
int arr[]; arr = {1,2,3};