关于结构体初始化,以下哪个选项中正确的是()。
struct Point { int x, y; };
Point p = (1,2);
Point p = {1,2};
Point p = new {1,2};
Point p = <1,2>;