在C++中,以下定义数组的方式错误的是
int arr[2] = { 1, 2 };
int arr[]{ 1, 2 };
auto* arr = new int[2]{ 1, 2 };
int[] arr = { 1, 2 };