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